From 3d4284637029e680d3750803db06ede0a841c702 Mon Sep 17 00:00:00 2001 From: Anna Wilson Date: Tue, 19 Apr 2016 14:35:13 -0700 Subject: [PATCH 01/18] Baseline Complete. Created Home Controller. --- task-list/.gitignore | 17 ++ task-list/Gemfile | 47 +++++ task-list/Gemfile.lock | 160 ++++++++++++++++++ task-list/README.rdoc | 28 +++ task-list/Rakefile | 6 + task-list/app/assets/images/.keep | 0 .../app/assets/javascripts/application.js | 16 ++ task-list/app/assets/javascripts/home.coffee | 3 + task-list/app/assets/javascripts/tasks.coffee | 3 + .../app/assets/stylesheets/application.css | 15 ++ task-list/app/assets/stylesheets/home.scss | 3 + task-list/app/assets/stylesheets/tasks.scss | 3 + .../app/controllers/application_controller.rb | 5 + task-list/app/controllers/concerns/.keep | 0 task-list/app/controllers/home_controller.rb | 2 + task-list/app/controllers/tasks_controller.rb | 2 + task-list/app/helpers/application_helper.rb | 2 + task-list/app/helpers/home_helper.rb | 2 + task-list/app/helpers/tasks_helper.rb | 2 + task-list/app/mailers/.keep | 0 task-list/app/models/.keep | 0 task-list/app/models/concerns/.keep | 0 task-list/app/models/task.rb | 2 + .../app/views/layouts/application.html.erb | 14 ++ task-list/bin/bundle | 3 + task-list/bin/rails | 9 + task-list/bin/rake | 9 + task-list/bin/setup | 29 ++++ task-list/bin/spring | 15 ++ task-list/config.ru | 4 + task-list/config/application.rb | 26 +++ task-list/config/boot.rb | 3 + task-list/config/database.yml | 25 +++ task-list/config/environment.rb | 5 + task-list/config/environments/development.rb | 41 +++++ task-list/config/environments/production.rb | 79 +++++++++ task-list/config/environments/test.rb | 42 +++++ task-list/config/initializers/assets.rb | 11 ++ .../initializers/backtrace_silencers.rb | 7 + .../config/initializers/cookies_serializer.rb | 3 + .../initializers/filter_parameter_logging.rb | 4 + task-list/config/initializers/inflections.rb | 16 ++ task-list/config/initializers/mime_types.rb | 4 + .../config/initializers/session_store.rb | 3 + .../config/initializers/wrap_parameters.rb | 14 ++ task-list/config/locales/en.yml | 23 +++ task-list/config/routes.rb | 56 ++++++ task-list/config/secrets.yml | 22 +++ .../db/migrate/20160419203943_create_tasks.rb | 11 ++ task-list/db/schema.rb | 24 +++ task-list/db/seeds.rb | 20 +++ task-list/lib/assets/.keep | 0 task-list/lib/tasks/.keep | 0 task-list/log/.keep | 0 task-list/public/404.html | 67 ++++++++ task-list/public/422.html | 67 ++++++++ task-list/public/500.html | 66 ++++++++ task-list/public/favicon.ico | 0 task-list/public/robots.txt | 5 + task-list/test/controllers/.keep | 0 .../test/controllers/home_controller_test.rb | 7 + .../test/controllers/tasks_controller_test.rb | 7 + task-list/test/fixtures/.keep | 0 task-list/test/fixtures/tasks.yml | 11 ++ task-list/test/helpers/.keep | 0 task-list/test/integration/.keep | 0 task-list/test/mailers/.keep | 0 task-list/test/models/.keep | 0 task-list/test/models/task_test.rb | 7 + task-list/test/test_helper.rb | 10 ++ task-list/vendor/assets/javascripts/.keep | 0 task-list/vendor/assets/stylesheets/.keep | 0 72 files changed, 1087 insertions(+) create mode 100644 task-list/.gitignore create mode 100644 task-list/Gemfile create mode 100644 task-list/Gemfile.lock create mode 100644 task-list/README.rdoc create mode 100644 task-list/Rakefile create mode 100644 task-list/app/assets/images/.keep create mode 100644 task-list/app/assets/javascripts/application.js create mode 100644 task-list/app/assets/javascripts/home.coffee create mode 100644 task-list/app/assets/javascripts/tasks.coffee create mode 100644 task-list/app/assets/stylesheets/application.css create mode 100644 task-list/app/assets/stylesheets/home.scss create mode 100644 task-list/app/assets/stylesheets/tasks.scss create mode 100644 task-list/app/controllers/application_controller.rb create mode 100644 task-list/app/controllers/concerns/.keep create mode 100644 task-list/app/controllers/home_controller.rb create mode 100644 task-list/app/controllers/tasks_controller.rb create mode 100644 task-list/app/helpers/application_helper.rb create mode 100644 task-list/app/helpers/home_helper.rb create mode 100644 task-list/app/helpers/tasks_helper.rb create mode 100644 task-list/app/mailers/.keep create mode 100644 task-list/app/models/.keep create mode 100644 task-list/app/models/concerns/.keep create mode 100644 task-list/app/models/task.rb create mode 100644 task-list/app/views/layouts/application.html.erb create mode 100755 task-list/bin/bundle create mode 100755 task-list/bin/rails create mode 100755 task-list/bin/rake create mode 100755 task-list/bin/setup create mode 100755 task-list/bin/spring create mode 100644 task-list/config.ru create mode 100644 task-list/config/application.rb create mode 100644 task-list/config/boot.rb create mode 100644 task-list/config/database.yml create mode 100644 task-list/config/environment.rb create mode 100644 task-list/config/environments/development.rb create mode 100644 task-list/config/environments/production.rb create mode 100644 task-list/config/environments/test.rb create mode 100644 task-list/config/initializers/assets.rb create mode 100644 task-list/config/initializers/backtrace_silencers.rb create mode 100644 task-list/config/initializers/cookies_serializer.rb create mode 100644 task-list/config/initializers/filter_parameter_logging.rb create mode 100644 task-list/config/initializers/inflections.rb create mode 100644 task-list/config/initializers/mime_types.rb create mode 100644 task-list/config/initializers/session_store.rb create mode 100644 task-list/config/initializers/wrap_parameters.rb create mode 100644 task-list/config/locales/en.yml create mode 100644 task-list/config/routes.rb create mode 100644 task-list/config/secrets.yml create mode 100644 task-list/db/migrate/20160419203943_create_tasks.rb create mode 100644 task-list/db/schema.rb create mode 100644 task-list/db/seeds.rb create mode 100644 task-list/lib/assets/.keep create mode 100644 task-list/lib/tasks/.keep create mode 100644 task-list/log/.keep create mode 100644 task-list/public/404.html create mode 100644 task-list/public/422.html create mode 100644 task-list/public/500.html create mode 100644 task-list/public/favicon.ico create mode 100644 task-list/public/robots.txt create mode 100644 task-list/test/controllers/.keep create mode 100644 task-list/test/controllers/home_controller_test.rb create mode 100644 task-list/test/controllers/tasks_controller_test.rb create mode 100644 task-list/test/fixtures/.keep create mode 100644 task-list/test/fixtures/tasks.yml create mode 100644 task-list/test/helpers/.keep create mode 100644 task-list/test/integration/.keep create mode 100644 task-list/test/mailers/.keep create mode 100644 task-list/test/models/.keep create mode 100644 task-list/test/models/task_test.rb create mode 100644 task-list/test/test_helper.rb create mode 100644 task-list/vendor/assets/javascripts/.keep create mode 100644 task-list/vendor/assets/stylesheets/.keep diff --git a/task-list/.gitignore b/task-list/.gitignore new file mode 100644 index 000000000..050c9d95c --- /dev/null +++ b/task-list/.gitignore @@ -0,0 +1,17 @@ +# See https://help.github.com/articles/ignoring-files for more about ignoring files. +# +# If you find yourself ignoring temporary files generated by your text editor +# or operating system, you probably want to add a global ignore instead: +# git config --global core.excludesfile '~/.gitignore_global' + +# Ignore bundler config. +/.bundle + +# Ignore the default SQLite database. +/db/*.sqlite3 +/db/*.sqlite3-journal + +# Ignore all logfiles and tempfiles. +/log/* +!/log/.keep +/tmp diff --git a/task-list/Gemfile b/task-list/Gemfile new file mode 100644 index 000000000..d0ca1fdd6 --- /dev/null +++ b/task-list/Gemfile @@ -0,0 +1,47 @@ +source 'https://rubygems.org' + + +# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' +gem 'rails', '4.2.6' +# Use sqlite3 as the database for Active Record +gem 'sqlite3' +# 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.1.0' +# 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 following links in your web application faster. Read more: https://github.com/rails/turbolinks +gem 'turbolinks' +# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder +gem 'jbuilder', '~> 2.0' +# bundle exec rake doc:rails generates the API under doc/api. +gem 'sdoc', '~> 0.4.0', group: :doc + +# Use ActiveModel has_secure_password +# gem 'bcrypt', '~> 3.1.7' + +# Use Unicorn as the app server +# gem 'unicorn' + +# 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' +end + +group :development do + # Access an IRB console on exception pages or by using <%= console %> in views + gem 'web-console', '~> 2.0' + + # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring + gem 'spring' +end + diff --git a/task-list/Gemfile.lock b/task-list/Gemfile.lock new file mode 100644 index 000000000..c45949a77 --- /dev/null +++ b/task-list/Gemfile.lock @@ -0,0 +1,160 @@ +GEM + remote: https://rubygems.org/ + specs: + actionmailer (4.2.6) + actionpack (= 4.2.6) + actionview (= 4.2.6) + activejob (= 4.2.6) + mail (~> 2.5, >= 2.5.4) + rails-dom-testing (~> 1.0, >= 1.0.5) + actionpack (4.2.6) + actionview (= 4.2.6) + activesupport (= 4.2.6) + rack (~> 1.6) + rack-test (~> 0.6.2) + rails-dom-testing (~> 1.0, >= 1.0.5) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + actionview (4.2.6) + activesupport (= 4.2.6) + builder (~> 3.1) + erubis (~> 2.7.0) + rails-dom-testing (~> 1.0, >= 1.0.5) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + activejob (4.2.6) + activesupport (= 4.2.6) + globalid (>= 0.3.0) + activemodel (4.2.6) + activesupport (= 4.2.6) + builder (~> 3.1) + activerecord (4.2.6) + activemodel (= 4.2.6) + activesupport (= 4.2.6) + arel (~> 6.0) + activesupport (4.2.6) + i18n (~> 0.7) + json (~> 1.7, >= 1.7.7) + minitest (~> 5.1) + thread_safe (~> 0.3, >= 0.3.4) + tzinfo (~> 1.1) + arel (6.0.3) + binding_of_caller (0.7.2) + debug_inspector (>= 0.0.1) + builder (3.2.2) + byebug (8.2.4) + coffee-rails (4.1.1) + coffee-script (>= 2.2.0) + railties (>= 4.0.0, < 5.1.x) + coffee-script (2.4.1) + coffee-script-source + execjs + coffee-script-source (1.10.0) + concurrent-ruby (1.0.1) + debug_inspector (0.0.2) + erubis (2.7.0) + execjs (2.6.0) + globalid (0.3.6) + activesupport (>= 4.1.0) + i18n (0.7.0) + jbuilder (2.4.1) + activesupport (>= 3.0.0, < 5.1) + multi_json (~> 1.2) + jquery-rails (4.1.1) + rails-dom-testing (>= 1, < 3) + railties (>= 4.2.0) + thor (>= 0.14, < 2.0) + json (1.8.3) + loofah (2.0.3) + nokogiri (>= 1.5.9) + mail (2.6.4) + mime-types (>= 1.16, < 4) + mime-types (3.0) + mime-types-data (~> 3.2015) + mime-types-data (3.2016.0221) + mini_portile2 (2.0.0) + minitest (5.8.4) + multi_json (1.11.2) + nokogiri (1.6.7.2) + mini_portile2 (~> 2.0.0.rc2) + rack (1.6.4) + rack-test (0.6.3) + rack (>= 1.0) + rails (4.2.6) + actionmailer (= 4.2.6) + actionpack (= 4.2.6) + actionview (= 4.2.6) + activejob (= 4.2.6) + activemodel (= 4.2.6) + activerecord (= 4.2.6) + activesupport (= 4.2.6) + bundler (>= 1.3.0, < 2.0) + railties (= 4.2.6) + sprockets-rails + rails-deprecated_sanitizer (1.0.3) + activesupport (>= 4.2.0.alpha) + rails-dom-testing (1.0.7) + activesupport (>= 4.2.0.beta, < 5.0) + nokogiri (~> 1.6.0) + rails-deprecated_sanitizer (>= 1.0.1) + rails-html-sanitizer (1.0.3) + loofah (~> 2.0) + railties (4.2.6) + actionpack (= 4.2.6) + activesupport (= 4.2.6) + rake (>= 0.8.7) + thor (>= 0.18.1, < 2.0) + rake (11.1.2) + rdoc (4.2.2) + json (~> 1.4) + sass (3.4.22) + sass-rails (5.0.4) + railties (>= 4.0.0, < 5.0) + sass (~> 3.1) + sprockets (>= 2.8, < 4.0) + sprockets-rails (>= 2.0, < 4.0) + tilt (>= 1.1, < 3) + sdoc (0.4.1) + json (~> 1.7, >= 1.7.7) + rdoc (~> 4.0) + spring (1.7.1) + sprockets (3.6.0) + concurrent-ruby (~> 1.0) + rack (> 1, < 3) + sprockets-rails (3.0.4) + actionpack (>= 4.0) + activesupport (>= 4.0) + sprockets (>= 3.0.0) + sqlite3 (1.3.11) + thor (0.19.1) + thread_safe (0.3.5) + tilt (2.0.2) + turbolinks (2.5.3) + coffee-rails + tzinfo (1.2.2) + thread_safe (~> 0.1) + uglifier (3.0.0) + execjs (>= 0.3.0, < 3) + web-console (2.3.0) + activemodel (>= 4.0) + binding_of_caller (>= 0.7.2) + railties (>= 4.0) + sprockets-rails (>= 2.0, < 4.0) + +PLATFORMS + ruby + +DEPENDENCIES + byebug + coffee-rails (~> 4.1.0) + jbuilder (~> 2.0) + jquery-rails + rails (= 4.2.6) + sass-rails (~> 5.0) + sdoc (~> 0.4.0) + spring + sqlite3 + turbolinks + uglifier (>= 1.3.0) + web-console (~> 2.0) + +BUNDLED WITH + 1.11.2 diff --git a/task-list/README.rdoc b/task-list/README.rdoc new file mode 100644 index 000000000..dd4e97e22 --- /dev/null +++ b/task-list/README.rdoc @@ -0,0 +1,28 @@ +== README + +This README would normally document whatever steps are necessary to get the +application up and running. + +Things you may want to cover: + +* Ruby version + +* System dependencies + +* Configuration + +* Database creation + +* Database initialization + +* How to run the test suite + +* Services (job queues, cache servers, search engines, etc.) + +* Deployment instructions + +* ... + + +Please feel free to use a different markup language if you do not plan to run +rake doc:app. diff --git a/task-list/Rakefile b/task-list/Rakefile new file mode 100644 index 000000000..ba6b733dd --- /dev/null +++ b/task-list/Rakefile @@ -0,0 +1,6 @@ +# Add your own tasks in files placed in lib/tasks ending in .rake, +# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. + +require File.expand_path('../config/application', __FILE__) + +Rails.application.load_tasks diff --git a/task-list/app/assets/images/.keep b/task-list/app/assets/images/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/task-list/app/assets/javascripts/application.js b/task-list/app/assets/javascripts/application.js new file mode 100644 index 000000000..e07c5a830 --- /dev/null +++ b/task-list/app/assets/javascripts/application.js @@ -0,0 +1,16 @@ +// This is a manifest file that'll be compiled into application.js, which will include all the files +// listed below. +// +// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts, +// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path. +// +// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the +// compiled file. +// +// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details +// about supported directives. +// +//= require jquery +//= require jquery_ujs +//= require turbolinks +//= require_tree . diff --git a/task-list/app/assets/javascripts/home.coffee b/task-list/app/assets/javascripts/home.coffee new file mode 100644 index 000000000..24f83d18b --- /dev/null +++ b/task-list/app/assets/javascripts/home.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/task-list/app/assets/javascripts/tasks.coffee b/task-list/app/assets/javascripts/tasks.coffee new file mode 100644 index 000000000..24f83d18b --- /dev/null +++ b/task-list/app/assets/javascripts/tasks.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/task-list/app/assets/stylesheets/application.css b/task-list/app/assets/stylesheets/application.css new file mode 100644 index 000000000..f9cd5b348 --- /dev/null +++ b/task-list/app/assets/stylesheets/application.css @@ -0,0 +1,15 @@ +/* + * This is a manifest file that'll be compiled into application.css, which will include all the files + * listed below. + * + * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, + * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path. + * + * You're free to add application-wide styles to this file and they'll appear at the bottom of the + * compiled file so the styles you add here take precedence over styles defined in any styles + * defined in the other CSS/SCSS files in this directory. It is generally better to create a new + * file per style scope. + * + *= require_tree . + *= require_self + */ diff --git a/task-list/app/assets/stylesheets/home.scss b/task-list/app/assets/stylesheets/home.scss new file mode 100644 index 000000000..7131aac4d --- /dev/null +++ b/task-list/app/assets/stylesheets/home.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the Home controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/task-list/app/assets/stylesheets/tasks.scss b/task-list/app/assets/stylesheets/tasks.scss new file mode 100644 index 000000000..b57862ec7 --- /dev/null +++ b/task-list/app/assets/stylesheets/tasks.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the tasks controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/task-list/app/controllers/application_controller.rb b/task-list/app/controllers/application_controller.rb new file mode 100644 index 000000000..d83690e1b --- /dev/null +++ b/task-list/app/controllers/application_controller.rb @@ -0,0 +1,5 @@ +class ApplicationController < ActionController::Base + # Prevent CSRF attacks by raising an exception. + # For APIs, you may want to use :null_session instead. + protect_from_forgery with: :exception +end diff --git a/task-list/app/controllers/concerns/.keep b/task-list/app/controllers/concerns/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/task-list/app/controllers/home_controller.rb b/task-list/app/controllers/home_controller.rb new file mode 100644 index 000000000..fc0b4743a --- /dev/null +++ b/task-list/app/controllers/home_controller.rb @@ -0,0 +1,2 @@ +class HomeController < ApplicationController +end diff --git a/task-list/app/controllers/tasks_controller.rb b/task-list/app/controllers/tasks_controller.rb new file mode 100644 index 000000000..1ad33d04b --- /dev/null +++ b/task-list/app/controllers/tasks_controller.rb @@ -0,0 +1,2 @@ +class TasksController < ApplicationController +end diff --git a/task-list/app/helpers/application_helper.rb b/task-list/app/helpers/application_helper.rb new file mode 100644 index 000000000..de6be7945 --- /dev/null +++ b/task-list/app/helpers/application_helper.rb @@ -0,0 +1,2 @@ +module ApplicationHelper +end diff --git a/task-list/app/helpers/home_helper.rb b/task-list/app/helpers/home_helper.rb new file mode 100644 index 000000000..23de56ac6 --- /dev/null +++ b/task-list/app/helpers/home_helper.rb @@ -0,0 +1,2 @@ +module HomeHelper +end diff --git a/task-list/app/helpers/tasks_helper.rb b/task-list/app/helpers/tasks_helper.rb new file mode 100644 index 000000000..ce894d00c --- /dev/null +++ b/task-list/app/helpers/tasks_helper.rb @@ -0,0 +1,2 @@ +module TasksHelper +end diff --git a/task-list/app/mailers/.keep b/task-list/app/mailers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/task-list/app/models/.keep b/task-list/app/models/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/task-list/app/models/concerns/.keep b/task-list/app/models/concerns/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/task-list/app/models/task.rb b/task-list/app/models/task.rb new file mode 100644 index 000000000..935f76e12 --- /dev/null +++ b/task-list/app/models/task.rb @@ -0,0 +1,2 @@ +class Task < ActiveRecord::Base +end diff --git a/task-list/app/views/layouts/application.html.erb b/task-list/app/views/layouts/application.html.erb new file mode 100644 index 000000000..0bc12ec2d --- /dev/null +++ b/task-list/app/views/layouts/application.html.erb @@ -0,0 +1,14 @@ + + + + TaskList + <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> + <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> + <%= csrf_meta_tags %> + + + +<%= yield %> + + + diff --git a/task-list/bin/bundle b/task-list/bin/bundle new file mode 100755 index 000000000..66e9889e8 --- /dev/null +++ b/task-list/bin/bundle @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) +load Gem.bin_path('bundler', 'bundle') diff --git a/task-list/bin/rails b/task-list/bin/rails new file mode 100755 index 000000000..0138d79b7 --- /dev/null +++ b/task-list/bin/rails @@ -0,0 +1,9 @@ +#!/usr/bin/env ruby +begin + load File.expand_path('../spring', __FILE__) +rescue LoadError => e + raise unless e.message.include?('spring') +end +APP_PATH = File.expand_path('../../config/application', __FILE__) +require_relative '../config/boot' +require 'rails/commands' diff --git a/task-list/bin/rake b/task-list/bin/rake new file mode 100755 index 000000000..d87d5f578 --- /dev/null +++ b/task-list/bin/rake @@ -0,0 +1,9 @@ +#!/usr/bin/env ruby +begin + load File.expand_path('../spring', __FILE__) +rescue LoadError => e + raise unless e.message.include?('spring') +end +require_relative '../config/boot' +require 'rake' +Rake.application.run diff --git a/task-list/bin/setup b/task-list/bin/setup new file mode 100755 index 000000000..acdb2c138 --- /dev/null +++ b/task-list/bin/setup @@ -0,0 +1,29 @@ +#!/usr/bin/env ruby +require 'pathname' + +# path to your application root. +APP_ROOT = Pathname.new File.expand_path('../../', __FILE__) + +Dir.chdir APP_ROOT do + # This script is a starting point to setup your application. + # Add necessary setup steps to this file: + + puts "== Installing dependencies ==" + system "gem install bundler --conservative" + system "bundle check || bundle install" + + # puts "\n== Copying sample files ==" + # unless File.exist?("config/database.yml") + # system "cp config/database.yml.sample config/database.yml" + # end + + puts "\n== Preparing database ==" + system "bin/rake db:setup" + + puts "\n== Removing old logs and tempfiles ==" + system "rm -f log/*" + system "rm -rf tmp/cache" + + puts "\n== Restarting application server ==" + system "touch tmp/restart.txt" +end diff --git a/task-list/bin/spring b/task-list/bin/spring new file mode 100755 index 000000000..7fe232c3a --- /dev/null +++ b/task-list/bin/spring @@ -0,0 +1,15 @@ +#!/usr/bin/env ruby + +# This file loads spring without using Bundler, in order to be fast. +# It gets overwritten when you run the `spring binstub` command. + +unless defined?(Spring) + require 'rubygems' + require 'bundler' + + if (match = Bundler.default_lockfile.read.match(/^GEM$.*?^ (?: )*spring \((.*?)\)$.*?^$/m)) + Gem.paths = { 'GEM_PATH' => [Bundler.bundle_path.to_s, *Gem.path].uniq.join(Gem.path_separator) } + gem 'spring', match[1] + require 'spring/binstub' + end +end diff --git a/task-list/config.ru b/task-list/config.ru new file mode 100644 index 000000000..bd83b2541 --- /dev/null +++ b/task-list/config.ru @@ -0,0 +1,4 @@ +# This file is used by Rack-based servers to start the application. + +require ::File.expand_path('../config/environment', __FILE__) +run Rails.application diff --git a/task-list/config/application.rb b/task-list/config/application.rb new file mode 100644 index 000000000..fe39b94eb --- /dev/null +++ b/task-list/config/application.rb @@ -0,0 +1,26 @@ +require File.expand_path('../boot', __FILE__) + +require 'rails/all' + +# Require the gems listed in Gemfile, including any gems +# you've limited to :test, :development, or :production. +Bundler.require(*Rails.groups) + +module TaskList + class Application < Rails::Application + # Settings in config/environments/* take precedence over those specified here. + # Application configuration should go into files in config/initializers + # -- all .rb files in that directory are automatically loaded. + + # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. + # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC. + # config.time_zone = 'Central Time (US & Canada)' + + # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded. + # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s] + # config.i18n.default_locale = :de + + # Do not swallow errors in after_commit/after_rollback callbacks. + config.active_record.raise_in_transactional_callbacks = true + end +end diff --git a/task-list/config/boot.rb b/task-list/config/boot.rb new file mode 100644 index 000000000..6b750f00b --- /dev/null +++ b/task-list/config/boot.rb @@ -0,0 +1,3 @@ +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) + +require 'bundler/setup' # Set up gems listed in the Gemfile. diff --git a/task-list/config/database.yml b/task-list/config/database.yml new file mode 100644 index 000000000..1c1a37ca8 --- /dev/null +++ b/task-list/config/database.yml @@ -0,0 +1,25 @@ +# SQLite version 3.x +# gem install sqlite3 +# +# Ensure the SQLite 3 gem is defined in your Gemfile +# gem 'sqlite3' +# +default: &default + adapter: sqlite3 + pool: 5 + timeout: 5000 + +development: + <<: *default + database: db/development.sqlite3 + +# Warning: The database defined as "test" will be erased and +# re-generated from your development database when you run "rake". +# Do not set this db to the same as development or production. +test: + <<: *default + database: db/test.sqlite3 + +production: + <<: *default + database: db/production.sqlite3 diff --git a/task-list/config/environment.rb b/task-list/config/environment.rb new file mode 100644 index 000000000..ee8d90dc6 --- /dev/null +++ b/task-list/config/environment.rb @@ -0,0 +1,5 @@ +# Load the Rails application. +require File.expand_path('../application', __FILE__) + +# Initialize the Rails application. +Rails.application.initialize! diff --git a/task-list/config/environments/development.rb b/task-list/config/environments/development.rb new file mode 100644 index 000000000..b55e2144b --- /dev/null +++ b/task-list/config/environments/development.rb @@ -0,0 +1,41 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # In the development environment your application's code is reloaded on + # every request. This slows down response time but is perfect for development + # since you don't have to restart the web server when you make code changes. + config.cache_classes = false + + # Do not eager load code on boot. + config.eager_load = false + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + + # Don't care if the mailer can't send. + config.action_mailer.raise_delivery_errors = false + + # Print deprecation notices to the Rails logger. + config.active_support.deprecation = :log + + # Raise an error on page load if there are pending migrations. + config.active_record.migration_error = :page_load + + # Debug mode disables concatenation and preprocessing of assets. + # This option may cause significant delays in view rendering with a large + # number of complex assets. + config.assets.debug = true + + # Asset digests allow you to set far-future HTTP expiration dates on all assets, + # yet still be able to expire them through the digest params. + config.assets.digest = true + + # Adds additional error checking when serving assets at runtime. + # Checks for improperly declared sprockets dependencies. + # Raises helpful error messages. + config.assets.raise_runtime_errors = true + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true +end diff --git a/task-list/config/environments/production.rb b/task-list/config/environments/production.rb new file mode 100644 index 000000000..5c1b32e48 --- /dev/null +++ b/task-list/config/environments/production.rb @@ -0,0 +1,79 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # Code is not reloaded between requests. + config.cache_classes = true + + # Eager load code on boot. This eager loads most of Rails and + # your application in memory, allowing both threaded web servers + # and those relying on copy on write to perform better. + # Rake tasks automatically ignore this option for performance. + config.eager_load = true + + # Full error reports are disabled and caching is turned on. + config.consider_all_requests_local = false + config.action_controller.perform_caching = true + + # Enable Rack::Cache to put a simple HTTP cache in front of your application + # Add `rack-cache` to your Gemfile before enabling this. + # For large-scale production use, consider using a caching reverse proxy like + # NGINX, varnish or squid. + # config.action_dispatch.rack_cache = true + + # Disable serving static files from the `/public` folder by default since + # Apache or NGINX already handles this. + config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present? + + # Compress JavaScripts and CSS. + config.assets.js_compressor = :uglifier + # config.assets.css_compressor = :sass + + # Do not fallback to assets pipeline if a precompiled asset is missed. + config.assets.compile = false + + # Asset digests allow you to set far-future HTTP expiration dates on all assets, + # yet still be able to expire them through the digest params. + config.assets.digest = true + + # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb + + # Specifies the header that your server uses for sending files. + # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache + # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX + + # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. + # config.force_ssl = true + + # Use the lowest log level to ensure availability of diagnostic information + # when problems arise. + config.log_level = :debug + + # Prepend all log lines with the following tags. + # config.log_tags = [ :subdomain, :uuid ] + + # Use a different logger for distributed setups. + # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new) + + # Use a different cache store in production. + # config.cache_store = :mem_cache_store + + # Enable serving of images, stylesheets, and JavaScripts from an asset server. + # config.action_controller.asset_host = 'http://assets.example.com' + + # Ignore bad email addresses and do not raise email delivery errors. + # Set this to true and configure the email server for immediate delivery to raise delivery errors. + # config.action_mailer.raise_delivery_errors = false + + # Enable locale fallbacks for I18n (makes lookups for any locale fall back to + # the I18n.default_locale when a translation cannot be found). + config.i18n.fallbacks = true + + # Send deprecation notices to registered listeners. + config.active_support.deprecation = :notify + + # Use default logging formatter so that PID and timestamp are not suppressed. + config.log_formatter = ::Logger::Formatter.new + + # Do not dump schema after migrations. + config.active_record.dump_schema_after_migration = false +end diff --git a/task-list/config/environments/test.rb b/task-list/config/environments/test.rb new file mode 100644 index 000000000..1c19f08b2 --- /dev/null +++ b/task-list/config/environments/test.rb @@ -0,0 +1,42 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # The test environment is used exclusively to run your application's + # test suite. You never need to work with it otherwise. Remember that + # your test database is "scratch space" for the test suite and is wiped + # and recreated between test runs. Don't rely on the data there! + config.cache_classes = true + + # Do not eager load code on boot. This avoids loading your whole application + # just for the purpose of running a single test. If you are using a tool that + # preloads Rails for running tests, you may have to set it to true. + config.eager_load = false + + # Configure static file server for tests with Cache-Control for performance. + config.serve_static_files = true + config.static_cache_control = 'public, max-age=3600' + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + + # Raise exceptions instead of rendering exception templates. + config.action_dispatch.show_exceptions = false + + # Disable request forgery protection in test environment. + config.action_controller.allow_forgery_protection = false + + # Tell Action Mailer not to deliver emails to the real world. + # The :test delivery method accumulates sent emails in the + # ActionMailer::Base.deliveries array. + config.action_mailer.delivery_method = :test + + # Randomize the order test cases are executed. + config.active_support.test_order = :random + + # Print deprecation notices to the stderr. + config.active_support.deprecation = :stderr + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true +end diff --git a/task-list/config/initializers/assets.rb b/task-list/config/initializers/assets.rb new file mode 100644 index 000000000..01ef3e663 --- /dev/null +++ b/task-list/config/initializers/assets.rb @@ -0,0 +1,11 @@ +# Be sure to restart your server when you modify this file. + +# Version of your assets, change this if you want to expire all your assets. +Rails.application.config.assets.version = '1.0' + +# Add additional assets to the asset load path +# Rails.application.config.assets.paths << Emoji.images_path + +# Precompile additional assets. +# application.js, application.css, and all non-JS/CSS in app/assets folder are already added. +# Rails.application.config.assets.precompile += %w( search.js ) diff --git a/task-list/config/initializers/backtrace_silencers.rb b/task-list/config/initializers/backtrace_silencers.rb new file mode 100644 index 000000000..59385cdf3 --- /dev/null +++ b/task-list/config/initializers/backtrace_silencers.rb @@ -0,0 +1,7 @@ +# Be sure to restart your server when you modify this file. + +# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. +# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } + +# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. +# Rails.backtrace_cleaner.remove_silencers! diff --git a/task-list/config/initializers/cookies_serializer.rb b/task-list/config/initializers/cookies_serializer.rb new file mode 100644 index 000000000..7f70458de --- /dev/null +++ b/task-list/config/initializers/cookies_serializer.rb @@ -0,0 +1,3 @@ +# Be sure to restart your server when you modify this file. + +Rails.application.config.action_dispatch.cookies_serializer = :json diff --git a/task-list/config/initializers/filter_parameter_logging.rb b/task-list/config/initializers/filter_parameter_logging.rb new file mode 100644 index 000000000..4a994e1e7 --- /dev/null +++ b/task-list/config/initializers/filter_parameter_logging.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Configure sensitive parameters which will be filtered from the log file. +Rails.application.config.filter_parameters += [:password] diff --git a/task-list/config/initializers/inflections.rb b/task-list/config/initializers/inflections.rb new file mode 100644 index 000000000..ac033bf9d --- /dev/null +++ b/task-list/config/initializers/inflections.rb @@ -0,0 +1,16 @@ +# Be sure to restart your server when you modify this file. + +# Add new inflection rules using the following format. Inflections +# are locale specific, and you may define rules for as many different +# locales as you wish. All of these examples are active by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.plural /^(ox)$/i, '\1en' +# inflect.singular /^(ox)en/i, '\1' +# inflect.irregular 'person', 'people' +# inflect.uncountable %w( fish sheep ) +# end + +# These inflection rules are supported but not enabled by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.acronym 'RESTful' +# end diff --git a/task-list/config/initializers/mime_types.rb b/task-list/config/initializers/mime_types.rb new file mode 100644 index 000000000..dc1899682 --- /dev/null +++ b/task-list/config/initializers/mime_types.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Add new mime types for use in respond_to blocks: +# Mime::Type.register "text/richtext", :rtf diff --git a/task-list/config/initializers/session_store.rb b/task-list/config/initializers/session_store.rb new file mode 100644 index 000000000..cd8c247a5 --- /dev/null +++ b/task-list/config/initializers/session_store.rb @@ -0,0 +1,3 @@ +# Be sure to restart your server when you modify this file. + +Rails.application.config.session_store :cookie_store, key: '_task-list_session' diff --git a/task-list/config/initializers/wrap_parameters.rb b/task-list/config/initializers/wrap_parameters.rb new file mode 100644 index 000000000..33725e95f --- /dev/null +++ b/task-list/config/initializers/wrap_parameters.rb @@ -0,0 +1,14 @@ +# Be sure to restart your server when you modify this file. + +# This file contains settings for ActionController::ParamsWrapper which +# is enabled by default. + +# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. +ActiveSupport.on_load(:action_controller) do + wrap_parameters format: [:json] if respond_to?(:wrap_parameters) +end + +# To enable root element in JSON for ActiveRecord objects. +# ActiveSupport.on_load(:active_record) do +# self.include_root_in_json = true +# end diff --git a/task-list/config/locales/en.yml b/task-list/config/locales/en.yml new file mode 100644 index 000000000..065395716 --- /dev/null +++ b/task-list/config/locales/en.yml @@ -0,0 +1,23 @@ +# Files in the config/locales directory are used for internationalization +# and are automatically loaded by Rails. If you want to use locales other +# than English, add the necessary files in this directory. +# +# To use the locales, use `I18n.t`: +# +# I18n.t 'hello' +# +# In views, this is aliased to just `t`: +# +# <%= t('hello') %> +# +# To use a different locale, set it with `I18n.locale`: +# +# I18n.locale = :es +# +# This would use the information in config/locales/es.yml. +# +# To learn more, please read the Rails Internationalization guide +# available at http://guides.rubyonrails.org/i18n.html. + +en: + hello: "Hello world" diff --git a/task-list/config/routes.rb b/task-list/config/routes.rb new file mode 100644 index 000000000..3f66539d5 --- /dev/null +++ b/task-list/config/routes.rb @@ -0,0 +1,56 @@ +Rails.application.routes.draw do + # The priority is based upon order of creation: first created -> highest priority. + # See how all your routes lay out with "rake routes". + + # You can have the root of your site routed with "root" + # root 'welcome#index' + + # Example of regular route: + # get 'products/:id' => 'catalog#view' + + # Example of named route that can be invoked with purchase_url(id: product.id) + # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase + + # Example resource route (maps HTTP verbs to controller actions automatically): + # resources :products + + # Example resource route with options: + # resources :products do + # member do + # get 'short' + # post 'toggle' + # end + # + # collection do + # get 'sold' + # end + # end + + # Example resource route with sub-resources: + # resources :products do + # resources :comments, :sales + # resource :seller + # end + + # Example resource route with more complex sub-resources: + # resources :products do + # resources :comments + # resources :sales do + # get 'recent', on: :collection + # end + # end + + # Example resource route with concerns: + # concern :toggleable do + # post 'toggle' + # end + # resources :posts, concerns: :toggleable + # resources :photos, concerns: :toggleable + + # Example resource route within a namespace: + # namespace :admin do + # # Directs /admin/products/* to Admin::ProductsController + # # (app/controllers/admin/products_controller.rb) + # resources :products + # end +end diff --git a/task-list/config/secrets.yml b/task-list/config/secrets.yml new file mode 100644 index 000000000..60a636ab5 --- /dev/null +++ b/task-list/config/secrets.yml @@ -0,0 +1,22 @@ +# Be sure to restart your server when you modify this file. + +# Your secret key is used for verifying the integrity of signed cookies. +# If you change this key, all old signed cookies will become invalid! + +# Make sure the secret is at least 30 characters and all random, +# no regular words or you'll be exposed to dictionary attacks. +# You can use `rake secret` to generate a secure secret key. + +# Make sure the secrets in this file are kept private +# if you're sharing your code publicly. + +development: + secret_key_base: 2a4817a17b79541e70e03517686d38f5c7f87cb29e5c7f7fcbf77c91f820c5055eaaeba9cc73a2b500c95d3045fc59f8744a48348b33d11d6191bddb3cfb756d + +test: + secret_key_base: 4d26c7607e9ed64027e1dc64874d9b3acb7a27d6c293c6f5886d4b1190748e76a5e132b8918c266c3e3a5d7d03a068c43f88b8f836017f00522686d67231f1c5 + +# Do not keep production secrets in the repository, +# instead read values from the environment. +production: + secret_key_base: <%= ENV["SECRET_KEY_BASE"] %> diff --git a/task-list/db/migrate/20160419203943_create_tasks.rb b/task-list/db/migrate/20160419203943_create_tasks.rb new file mode 100644 index 000000000..a5855a2cd --- /dev/null +++ b/task-list/db/migrate/20160419203943_create_tasks.rb @@ -0,0 +1,11 @@ +class CreateTasks < ActiveRecord::Migration + def change + create_table :tasks do |t| + t.string :title, :null => false + t.string :description + t.string :completed_at + + t.timestamps null: false + end + end +end diff --git a/task-list/db/schema.rb b/task-list/db/schema.rb new file mode 100644 index 000000000..18cf62812 --- /dev/null +++ b/task-list/db/schema.rb @@ -0,0 +1,24 @@ +# encoding: UTF-8 +# This file is auto-generated from the current state of the database. Instead +# of editing this file, please use the migrations feature of Active Record to +# incrementally modify your database, and then regenerate this schema definition. +# +# Note that this schema.rb definition is the authoritative source for your +# database schema. If you need to create the application database on another +# system, you should be using db:schema:load, not running all the migrations +# from scratch. The latter is a flawed and unsustainable approach (the more migrations +# you'll amass, the slower it'll run and the greater likelihood for issues). +# +# It's strongly recommended that you check this file into your version control system. + +ActiveRecord::Schema.define(version: 20160419203943) do + + create_table "tasks", force: :cascade do |t| + t.string "title", null: false + t.string "description" + t.string "completed_at" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + +end diff --git a/task-list/db/seeds.rb b/task-list/db/seeds.rb new file mode 100644 index 000000000..3c6bffccd --- /dev/null +++ b/task-list/db/seeds.rb @@ -0,0 +1,20 @@ +def random_time + Time.at(rand * Time.now.to_i) +end + +tasks = [ + { title: "The First Task", description: "", completed_at: random_time }, + { title: "Go to Brunch", description: "" }, + { title: "Go to Lunch", description: "", completed_at: random_time }, + { title: "Go to Second Lunch", description: "" }, + { title: "Play Video Games", description: "", completed_at: random_time }, + { title: "High Five Somebody You Don't Know", description: "", completed_at: random_time }, + { title: "Plant Flowers", description: "", completed_at: random_time }, + { title: "Call Mom", description: "" }, + { title: "She worries, you know.", description: "" }, + { title: "Nap.", description: "", completed_at: random_time } +] + +tasks.each do |task| + Task.create task +end diff --git a/task-list/lib/assets/.keep b/task-list/lib/assets/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/task-list/lib/tasks/.keep b/task-list/lib/tasks/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/task-list/log/.keep b/task-list/log/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/task-list/public/404.html b/task-list/public/404.html new file mode 100644 index 000000000..b612547fc --- /dev/null +++ b/task-list/public/404.html @@ -0,0 +1,67 @@ + + + + The page you were looking for doesn't exist (404) + + + + + + +
+
+

The page you were looking for doesn't exist.

+

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

+
+

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

+
+ + diff --git a/task-list/public/422.html b/task-list/public/422.html new file mode 100644 index 000000000..a21f82b3b --- /dev/null +++ b/task-list/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/task-list/public/500.html b/task-list/public/500.html new file mode 100644 index 000000000..061abc587 --- /dev/null +++ b/task-list/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/task-list/public/favicon.ico b/task-list/public/favicon.ico new file mode 100644 index 000000000..e69de29bb diff --git a/task-list/public/robots.txt b/task-list/public/robots.txt new file mode 100644 index 000000000..3c9c7c01f --- /dev/null +++ b/task-list/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/task-list/test/controllers/.keep b/task-list/test/controllers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/task-list/test/controllers/home_controller_test.rb b/task-list/test/controllers/home_controller_test.rb new file mode 100644 index 000000000..730478d38 --- /dev/null +++ b/task-list/test/controllers/home_controller_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class HomeControllerTest < ActionController::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/task-list/test/controllers/tasks_controller_test.rb b/task-list/test/controllers/tasks_controller_test.rb new file mode 100644 index 000000000..ab48b116d --- /dev/null +++ b/task-list/test/controllers/tasks_controller_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class TasksControllerTest < ActionController::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/task-list/test/fixtures/.keep b/task-list/test/fixtures/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/task-list/test/fixtures/tasks.yml b/task-list/test/fixtures/tasks.yml new file mode 100644 index 000000000..454f65b08 --- /dev/null +++ b/task-list/test/fixtures/tasks.yml @@ -0,0 +1,11 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + title: MyString + description: MyString + completed_at: MyString + +two: + title: MyString + description: MyString + completed_at: MyString diff --git a/task-list/test/helpers/.keep b/task-list/test/helpers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/task-list/test/integration/.keep b/task-list/test/integration/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/task-list/test/mailers/.keep b/task-list/test/mailers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/task-list/test/models/.keep b/task-list/test/models/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/task-list/test/models/task_test.rb b/task-list/test/models/task_test.rb new file mode 100644 index 000000000..3ca215970 --- /dev/null +++ b/task-list/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/task-list/test/test_helper.rb b/task-list/test/test_helper.rb new file mode 100644 index 000000000..92e39b2d7 --- /dev/null +++ b/task-list/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/task-list/vendor/assets/javascripts/.keep b/task-list/vendor/assets/javascripts/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/task-list/vendor/assets/stylesheets/.keep b/task-list/vendor/assets/stylesheets/.keep new file mode 100644 index 000000000..e69de29bb From 1a25f2f3403c46230c0cad0f4ec64df7795f57e8 Mon Sep 17 00:00:00 2001 From: Anna Wilson Date: Tue, 19 Apr 2016 15:58:33 -0700 Subject: [PATCH 02/18] Task title link renders a new view of that task --- task-list/app/controllers/home_controller.rb | 9 +++++++++ task-list/app/views/home/index.html.erb | 14 ++++++++++++++ task-list/app/views/home/single_task.html.erb | 13 +++++++++++++ task-list/config/routes.rb | 7 ++----- 4 files changed, 38 insertions(+), 5 deletions(-) create mode 100644 task-list/app/views/home/index.html.erb create mode 100644 task-list/app/views/home/single_task.html.erb diff --git a/task-list/app/controllers/home_controller.rb b/task-list/app/controllers/home_controller.rb index fc0b4743a..a686815ab 100644 --- a/task-list/app/controllers/home_controller.rb +++ b/task-list/app/controllers/home_controller.rb @@ -1,2 +1,11 @@ class HomeController < ApplicationController + def index + @all_tasks = Task.all + end + + def single_task + @selected_task = Task.where(title: params[:title]).first + render :single_task + end + end diff --git a/task-list/app/views/home/index.html.erb b/task-list/app/views/home/index.html.erb new file mode 100644 index 000000000..12c582e43 --- /dev/null +++ b/task-list/app/views/home/index.html.erb @@ -0,0 +1,14 @@ + + + + + + + <% @all_tasks.each do |task| %> + + + + + + <% end %> +
Task NameDescriptionCompleted At
<%= link_to task.title, "/#{task.title}" %><%= task.description %><%= task.completed_at %>
diff --git a/task-list/app/views/home/single_task.html.erb b/task-list/app/views/home/single_task.html.erb new file mode 100644 index 000000000..ac086bd9e --- /dev/null +++ b/task-list/app/views/home/single_task.html.erb @@ -0,0 +1,13 @@ + + + + + + + + + + + + +
Task NameDescriptionCompleted At
<%= @selected_task.title %><%= @selected_task.description %><%= @selected_task.completed_at %>
diff --git a/task-list/config/routes.rb b/task-list/config/routes.rb index 3f66539d5..2e558117b 100644 --- a/task-list/config/routes.rb +++ b/task-list/config/routes.rb @@ -1,10 +1,7 @@ Rails.application.routes.draw do - # The priority is based upon order of creation: first created -> highest priority. - # See how all your routes lay out with "rake routes". - - # You can have the root of your site routed with "root" - # root 'welcome#index' + root 'home#index' + get '/:title' => 'home#single_task' # Example of regular route: # get 'products/:id' => 'catalog#view' From 9ad2df3bb12582745bbe686f3a7e9aaf8aa5676e Mon Sep 17 00:00:00 2001 From: Anna Wilson Date: Tue, 19 Apr 2016 23:26:40 -0700 Subject: [PATCH 03/18] CSS Styling --- task-list/app/assets/images/cloudsart.jpg | Bin 0 -> 169527 bytes task-list/app/assets/stylesheets/home.scss | 63 +++++++++++++++++- task-list/app/views/home/index.html.erb | 11 ++- task-list/app/views/home/single_task.html.erb | 6 +- .../app/views/layouts/application.html.erb | 10 ++- task-list/config/routes.rb | 1 + 6 files changed, 78 insertions(+), 13 deletions(-) create mode 100644 task-list/app/assets/images/cloudsart.jpg diff --git a/task-list/app/assets/images/cloudsart.jpg b/task-list/app/assets/images/cloudsart.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1bed7aa2b21ab6ba3fc6895aaaf9a1a750a1e287 GIT binary patch literal 169527 zcmeFY2Ut|g(kMECBsnWcj*^*yAxa!Th9EFx5Qzf}X^<>YKtvRjARwTUvjind5&=O_ zlqktS5CsGTl#FoKz&7l2_BrRj|Gn?M`@Or@e6v<{b#--hSk+b4y$(hXrbzVF1F()D zkghIB5Cj5|fQZ4gASeKVfgcFW3?e*)K_ENu$)B(b_|zXX03{d(f&esZz~2iDKZNN4 zI6fK+BKV_h9`Nh~5g4LCAb#o}PZbB89fm{S8RvuZcE)*fAPo^5y0-RM4}2N~7l(<< ziA&4D#5rJaIRsozLK*~uW`TdnmIe92pZHQ1^ao5J1Js4Th``W4Xo-Gr2bk?wJHUKD z+X1uy0{+1REDHI>oB45+DCv)i(EL{z9JGRHNI({#EGU=@1fc;#X}||>fku)ZbbyrrDG9-c7a%bHf`Y&h z0zx8Ul4GP~z~KKm6AXete`HdFzyx3@gaATFOhiHmC6@p)X`lq0v@k*y16w+-3*m4g z`h@HUs@yyb=qGj(l3o%0NMhbZ!yI1KXH1>^qf-m(x<)>2(tsckKw5%B znTUx95r-mh!e|Kq2`+Ha5yHb0=0ub{d+6Dk2 za*sQx8%z0Mrhkg?uO;CBCBnfth#Y!YCk+VbNkdYwZdM{_=pJN(iqV|V_V(*~9q?(b zzz3S1-p~48zB8^&NOkBs{)ID_?U)p$By=k`-PJQL>tY;T6h|t}TYm!O64&o3uc)&u zENrfF$CneH#4@@_`eS&U%I`~b2n{xx@f%8-^~1QI8xx-5sQEzh2AxDde@&BID+Vpd z3#o?*@-ozzt%@)Q+@;+`G-kE330%Ihm=JqYbwrTYB9uFKd|r`7aLG0#{0?eltH4b7 z4lMyh+So|0H}raN*rOBnXxWoZ-5QrbP-RIlOut91))pjZdCARZ{u|n^Xo743Wn(9v`w;*S-zPo zLzFpRxkNjC4wlq%ojh=+X{(2B)YXTMW5qcB&KZR+pUYQu9z;m?mkO#_e7YNYN-vAm zb+E%vkB&_T-Jvm_OInLWx($B4+*XUN)JRe!iDc0zA9=}<6O*c|D$G!Rteew#57QzoUp5!iHWJKH=i@3qr5{}zKo(X9!gE$*>{{x{ziA=+9t z#(88JRBwnbqZIO;A(K7y!Z1?g6UGKhP!md_kx=S&XQQ_oeL%!}w+HUTUt=#)7^YKw zOk0!V;y-qQe&tM+bsS}MuiS%Ykwq)Ui{J{53(xduYXwwm&Z7-(CCGVI8TT%-~j2#RCbpRUdxPuCK_gn$giX zp)kHw_GRe8w4q{M)jS2&g|?b35GCaLC2ws#Lg|>WTA`;01D`D|l`oBLYh9n`lDc~D z491!M1BB$Xkm_06PJsfK0A`gngEQK$4!3D93bg5Hu*Mf7ZpwwT)9c2*A$Orqm_9@7 zqh5~V)}wEAIY-poBZoXoGp*9e`~mS^6UrvQD8AOet;8jgtNV60J4OyH(0U*Cy3VeX zNXJzvK?fyHaI3ZfsTrdIl2o38@^rGR@!n*;7F$Z2wL#1@xp`ymf~ff7<ymA9*mi94F`OtNKaxe%5H)pu)8~jJI;fj@^HDgK9EQ2$zON$&GFykBh6-)nPy* zY!E@8G9peI*Jw^SoUU`QkWhx9K=Nttn^9D*tMcx?fYwEg*CWP*{LZ4{bm?!1uISeo z*xjQFS97Ld_I^`%OT;tcnC`ov8*>#7F)Z2fXSispX|zB|&|CW%LnQYFo`d1>6WWFj?JF%LG5ju-o)gDS1|+HV zYn57a^Wtl?qrZP_(DDxveg70$=V0<+bnLbs^a;=0LL4In#J<5Ni6^T8Be%Wu6CKrehK&XYOD$7o=jdoXseM8oxKO_vZA2g#_SbP4d5 z00_j+0=57_Px7Amrzd{>1qcplc@Jr+2fH)172+07MQI{jE;HN_I?R(h%u539)W9FV z9)mz+o?d{_py%u3>FWa|@dgVB>E>mK@$hy30pp+OGpb1Z6XoH9`H_c*@i>6~kXF}I z)y)ovbHj6{I^=7J4ZxGDVtw#JpKu%>h{lc zs$LF8#vVQz+-NuaNc_B1-5fan3Xk@7^Z9{Su2%j*PwI!U_rZCo+4|VxTW~0(zLUQ9 zk3qx3cv|3jIG{Qh$DeF|@W4Nf0ITu```__~_HIXbeJ^`u^P?R6=s}kbVd_I04+2a` zyv+wZ4@Z{oFpu(x8h=;1^v9S}9OCdZJm8R$>1Uelkn7jO^s&P`a04IC6u=I~U!*^V z;HVbp`XN>mBL8UnbZ*>{u;cwfYq z0FVlV1i685AYYIJ$Q#4~@&aKF)3!hw1N?ugp2K24ZijFBQ3B89r!V&-|4`_ki9di} ziWcPI>xS3R_-RIDhx7Gt@csuqXYT_8@(vdxymD~Ec{u&S1%y{3zo%7waPCLxBQelU z&VS?|Hjv2M4Qr3_HgVIzt0M59>LEPL1JHOKPkfj_sr|;A*vSj$>-i@X5zY(ig!TAC z!;z~S;<@V`;s72Lw!S{NGZ+tym#q&5-+3UTi=IE$Fw!GpJO-bGa(ChY9{*3bAL{Gn z_S@nI)QIo=KVx*goqk^+0ikT&e2i?J{zOG-j{(YI0(?;3nnt=hKNLR65A>gik2&MK z0#)3wPCt5z>ZtLWKhS_2#10roTi?S4=$IeI%jYl1O@5&NOipI!gv7bwyngFknj`+I zXMSb?ML=h99{9dK=7aMD%nonN?-PgA4VXy(geAAb`2Z8@pYUYB5Ig@P`QiI^3SSY3 z9QZ?&Ru18#_YNOhIhw*5hje%f5U~_+!@oUQz#mu^?QQ7eFF2Au$+5r0Q3{*G4s z9j*8~TJd+Z;_qn1-_eTSq7{cLC?~LHf?Rk%deQ?5+TTbuj2)is75HkB_IEn3#vRs4adUMARPV zE*46W?68*aY^Tu0@VrYyv&ezKxqwWXP$o-=-Zyz+~SJ(Vy zWq&RXkpC>~`D1tNuj~JreK>9KHG0Y+y)d>w@WcoRoctK&U-7sM6ziog*@aG0Eg46x}YB#s~VBT`*p4mkipncs<}MPTAaKX&N;M2vI5I$r#bqz?9S zjyNxOTcC%r?zT=CF&9sa(_wYGx^gHFZy#F^dkjiVfeUDxC>HA=rz#Ft7e^q(#bx2* zQZg`@imJGb3|w3Wsje!kF0P{SqpTXv-WNagKgv1)Wi_OwHDEAlNpb0;va%|wNL6(; zgo=hLQd|u#`J?QS<7MmiS3Hnv5|UD?(kkMr|BA=YQIR`z8gy|EK-Wreas0xgkVt(m zoFmo^$nXZjk{l>?q!dh6N=gJS3d6q{Kx2XCYht~Dk-YfFyJm>F@CW3EQj5#Vi2pudG8$5F87WCMHQ**KD1RSmbOtQmC`#;kTgoGSI>i>{-z+}}V5HNLF znD`%)UrJJ41|cCWp$RjN9x#>vf3!m! z{txemnkt~rkTNP7Fexbw4YePg_WS#Bq_F|@E-oi2`G3fGsA&8rrT)*_=`UBF|DtyK zZ_X=woCiLl^h;-X+Ij(-Kt32RZv`$#FPuAvt*0jtxwFNqWidYwhd+$FpPHY;2gmW- zGWRbPqXWhZ` zBeNfn7%+N%6-7wPN+Dp92oboftfL4F<{%>?gR#Yk$jZPF7zZg^J4XlD>BDYy!~Wuh zH@xu1lQ`_px<(eRDz1W%l9rU!P*qb?SN}I9CH}i5;nGs-5>nzYRk)O_8eqDqs)@^L zNFtC36*WmDTpa$d>qG!1qKt|fOd2VDR1zj7qX7d-Bh=KTU@-CDN*=cOsQbizb=F_? z^C9JL9t+S(hbX`e!h=8kFU22z(%;X&d*JUL_`3)G?t#C1;O`#zzo-X(MQ|}5K=}uBn6dz(If`4DP@QEqo-%%-n*5_$6?J;TUkP0ywN- zYwzu;Yp8)gWCjAFL>%~V5gz{I0s__>uaAyJ42o##b8!5~_%A+b>^;4Jqgr5nfL_7@ zh{Xc%WdL^b_wmHz@jK7-cCL6BfF_`;eM6; zg~R0lXUu>zVbJ(rIJ-0us4fZwIx+qW$CCx@TU-W#YG3`<9!C6p`7I=m#n_ADJM`!E z9|?X^{%hd3`b6>d{S0Grs2v@{;K0vnd*E1wuNQ|mu&aUL5c$VR{NFD4n^?ceAq;qH z7%vRqA90ufvkdFu1Pr%_0~YU;b6`FG6m0#C!+*2bZyfO8(Yyu#y1ac5y|pNa`V~D0 zy7U4>Kt~3Gp1TL+fPapg&M^~Ug9!vOW&dP=-qdg!b+K9v6 z*URsSgaH2_1WpoCf#^X@z;`&@pi>|b5F8{8k_Rb+)InMxJ&+N|9CRLJ4{Tw%181@P zLBXJK&=t^iP&_CZln%-S<$;Pp<)DY4I#3hn38)kF9Qa;m7&HNz1kHjzgH}Krpk3g^ z8ZnpxOb2EHvx9lTLSQ&p2CN8H2kU^*U~{ky*a_?b_5}xnBf;0fiQsf_Hncxf>=SEAQvEkkjs!8klTHafI33GprO!f&=hD6v>e(1?Sc+MC!veb zZ2}?!Isy&?5dwJvO#)*Adx8rDp#-r6=>$atwFDgmg9K9qD+K$56of2@8_=%*6G>OcKT!?~*Vu|h&RS>lj^%KnytrHUy zGZ70BD-i1u+Y?_d8$CF6sjt!S5%AC$Ef+Jk<_-- zq0|}FkElne*J?e6;Gc4z!nPb7|XYXXv1G+;m7fd%8%v zJi4cJv-Cvt{PZY#7y9e;W%MuUR~Tp+BpFN?0vIwFni(b;p^SWtC`LENn~V<`Uo-9; zXFaZR9CJM8c=_>xP)Uo2~2fNZp2&lNI+*esv6<76Atx?@X${|CLt!hxUGiuk=UaHfo8>^?Q zztiB-aMCE%SUH0@6Lh9klTcGzGeL6%#fq{=6{A+Pq_sk{I<(2P4Ykv?r*#B%ymT6L zA-Y<+NxE;&@}BiLTc-!oL+K^yz18Q}zo6e}KxCkAkYVr<4MPW`yA0_Jtqn^IH;hz` zZW>J(pEC9}ZZn}WIcHLAvT3SjnrJ#{CT135_S~G=9BW>0L2O}SQDCudscxBUIeQLq z?#j8>R{T~0R^8{B&%2#(wx+VSwXU)uv@x|QvDvfLv(2$xw?o<8v0Jf6+Nauoc2IV> z6Da%ciTIYoY6bo2grcJBhoE z`y&rp4_A*492+hG*Y7FhdBt<`g4~7V3oBmQUIpG@Z!7P5A9}!;df|J@H_CU)Pth;K zZ_D4rzbb$xz$4(rMZt?P7e57R1m*`31lb3*1#v4 zWX-&uxs!#>8qGeFU7N#~lafo6>zDg6&m^xaUnak}fVtp$!S_Os!pS0ZQAe?Kad8Pt z$<0zosc-50{d4#G%GAp0%SFnwD;O)TSAr^iD;FNvJb3+3`(ay^OjUU`Z}puTx|(aX z;M$9|D|OCwllA8H{g1RBwKd2$)HI4V7B+D5T)Qf4u>4_Qpna>}*KkUt3{z&mL}SuirLESs@LklTI^S*uZ7o zCW|nd>K0@fzq_NJT#N7toG;*|4WF6X{Y zuZAUy;S%n>D6?}R6pGVu84i9#KG*X!>1-xZl$9)*knw}q;W5*<8o3HX#Wq!@#>@yN z{f9N9>S#oYNpXj{X{ejIg`{Ar?Ol5zt1JGF#pkfe`Bt89hitx~5hMM{rPz?RUJFL! z&j!Uz7H{W-i|t(5BFX{>vh9jI8CG2UG0y5n6!6Dq;_SHvkxUj_#Z)FP$%?&x5oKfu z?J&Zjp}C#`MwgU{_XcD}P39#9e7QoXMxmDH_5siN4X$mZ3OapVVLvspI^LbCEAgng zoGh2>L%YR_dk7PJ&M9nsr?cU+#NOcB?$cIZa>uRN)2QYjlWbCb8hQI@YPoLaE9ZCV z((LY7Ae}MwWid7TZWxYvL6%?mg8MX1feoh(FQ+VgxYWh-A^Az&&FYIy#mOVfvV8qd z>R4kUO@=SFBtLbeyczW|%>pU+Fwb>Eur{RJUSSMPV_fOkvk;{~M9Aq_EOMKqM(gE! zjm9dY%K~V5_4Kk^dNxs97;DMuW_77()zmM2%rQ3TeH(_nKqlwg$L}8Rv-XRL!jkt2y!B(9q~HzL zZqL5gtETXFfph@LD_O!Asp)8;T{`lH899HGH1>81Ltf1lYErK&n4(K%$Dh7d6VkM` zH~9FZNH0iY&Oi@|$g3<C_#+ zN>^#x4CriN$(dt(#xADYv5W4h)=&dY|LRIQV0OMtP0m{)l6sdAEBxF*#OmuaW@X7( zi+l~eB{4vh(oiCcm^T!>(MYz??2rupvmbSkqyy|Nqmd{$dL?=|+yV(7U=<^uEy~2D zXAueu8L&!O8>A0dodXx8zZi(_8f8WnR+{8kR`{saaOtET^lg(W4U-&zQm*A|FCZYP zEiy}tf_+iwt3w+Yt$0S4p^z*7WJa^qg9uIY(w(LdCUm}IR*BKhiC&BCj*!x#$ z&UuDeZTr{nrvypxuF#Hcm5XwV%7oZ z%-K&;Ex6g&A9k>dBcHa2Qos3>lP}JH3OyetJ?P(o{kq4qHnKH6MNavJJx!=PprjK5M;v-IR9m&K-Hz^X%7ChUTk3 zrkMA?e%LPAQ(KA!XQr4$C5vX%lAs%>xqA9uwv}AVZWolKm%$iqv-cr%Yp86hg^NAE zU<zI&;TzR#n@*!T zY8gN3>`NmR46UlgWF4o%(}`42Br*3*XN%QVMh}OU=eVE?vlHVh^T#xZc)z{}bcC&z6%0zd zJ zgx1CP`X=%77lC*5+q6*!ll$rY1qm%I>o6gfG6S;V!jJjp+o`oUF_I;yeP}mluCshEn`BPKpk>6 z6l!w*@B#DmA!PeW1?7E1pwhYUqSVmdPK%f@M;&B7b!hrkTMOMe1v$xBcZs)om3y7> zL)==e9aReHdQWdxiEu_5&^Iw_Z?=PAZ|UbTWNh$wZ`tjyT*Iu=NA!`I)gTyJ+qm+A*d5ID5X9CQNSc)e`kLVCSLG{cS?f3Onrkd&Zp15RkJw=~5el~@9 z?_r*cuVWecVoxd!gVrs(p8Z}8lc@Ck%UIir=hAOoZj(EfzAjPjvnco+m7X12=2kF+ zmIxC(*J0e>sH7M#Rp^!qLw#i_nh=Qdms9F`(?tmt#VXrvjR zefRwgE97Z1uO3pTBK~2nL2}V%E_I&paLJc_o5qowkVdu$Cm z5QMU9PfXCa@Oji-;I`izPkR3m#bbnnRBLZs~52!mc&dmd)LR^=lWdsc&hjg zKm=Q-^^nmo9&QGNnht#qI>TGOa>K0cZ1Snez&C7;A=Y9azw4%Tc#T)EOId~$W-qLI z_ckipcdyhA)JV+ga{C%R=%Ra6zSdOs?E!Upyez*HEuhnVrLLB0q?H)G5ia$N;>2i% z5SoshqfmZ`K^bC;dJ$Ip5%K~gCh`K#oyMWh(EVwo<@X|9sT(>+@j9GY6HF|uf0)NH zKwaT1BmxXZ`W&Zg%M|@n!1B3mkbW1P>>o@g*}+U*4wZ}IeYm;|#~Ke^(Iu5LZZcQ8 zTN!oL4!y;PU97k3j)%1oP~K9b-09?gGVtt_T@uKF==v?PR|zWT@453Ok!&c(jAQa1qj@zSYl3y;+b0Ej z%p@}d>j?#>8S*L%c*A2xr*LIcH_=SgrB24QkJ2#Pm1F6Pl|Ldhi|*CrRr6Qs8zzmbBW?9cwalbj0wFoqz$Fs=obd( z8NTUtzAFX3>ObfS7&ouuyNgmBI^@hSMd`*ZeUI>}ZXvf)2<5V%_S}Fz51dyM0)r1B z$=>8oeSXL>g#0!~q1Ir&;Lss&|9({He2jzzvY@w!ImWj?{A%!Gk-Rir?aNc$NTM98 zARWLY+H~O^csCUh?Z;;k6OsSK0=YpoVL*B33uUkBXKnI$zuZTQFjv;NL9MnovF*U|Wh%3JrhF;1Cx z1>cwDAA0X_09t+YxIHV(?EOC9uF}B(-d;PtS8Z%~SJRQnBHxm@5urJv)ob0jEL=>r zXe??})MwUdQhc@Q?9Kl4*fMgmow(~U<@bxp1ncdE&INUtmm--;&KERZ%MU~93}?qy zOxg=-WLb>8FfTpPQ-WYx$k%bFF~KH_#hP$4m0H%tI+g*ZojapTLJ?!L9GQ@*iSV$X z$~YG91ELqUt_uN{8l%f_swZOGv6u`omooKSYPT32JBZLud7r?b9r7_3Vb5fN_ro+I z1`3|V+G?u4o=bNuVNtw7$gMM6QDKmI#ij4zvz{Jr1ZcudN4k)8e5!x$wA)yc_6|2| zim8`e@H@5F{y~cTk+om4wjPsa3wces)UO8L6dP}O{A8zm?8fIaGrZ5Wzm>S1zG2O^ zxKqL2I$|y-on~@uA@Gzi*(Lgnev}E2Hu>J&q(~>QKb55 zE>I4a8vgvLZ^cQ0F_s4-Ps(o!x+KHr!3z$of(@&!`VW0}>GL&bF2ci9Z;rjEAyV$D zm+{`_2?1O`U)Fq|oHnS8O4V5P&ZPwUN}iR9elO@YiWZW>O3rTE-@9gN^c9A@b|-~S3+;8v z0?xr2KnD~&d*jei`5;fu>yqTXp^n~He({^(F|$oVs37v&soEQWt#&8$NfF@M^?&W? zJq0*YE<0D4wP%}p0UvTy$bkA&Kj4OSUk$)rHOaAZd#-6?cYb_jI=l!_J*R`FF%@lQ z^o@X~nqOv%;}OyvcdXe$mO5KMH$V)uOJ{5ER5Jq>RZOjX$cqivhpdXN*-JC6y?Y2i z-9|4^sI?SWT=f~N7BXNoEY8?g7+9QSsK2I^#q-@mqOU{Tovq~Qfu(u60G;eSuQ~r^w)s4J@lt=|vwc~SHC!pQ^l|Fv)WWCh=(D{k)|V2(?Be`#E9#Q1 z_Lc6x4wT4SNpsyb6{));-Q9e*OtH~??pbR4Y>|f1>p2$xXEmeuDDS;8o_;v6f2*R* zvU+AeF`Iptp;g32*umhDuB#d@o7rK|x;Nd6 zuA{OytU@@eqnXCiYxKMg(o4VOBj@N9@0Xnu9zKb29hu8TxO{G=fSLiCsCWaLo+n&# zN0ho6n_hEXa$IJxBq`$zZ_}LJ~rQ||oT8Ty$`U}{x zdF|l=h%aRV>i&RvM7ze9O}eY8J6~5u#;me_?(0`wr!#d^0scXv>^iH8yu3nQrS~oM zh`ZOSJlHR+zqjNQWqp@=M)X|iw|r8gi>L3@xel*~DqWYnn_1P-V8R zW@`6Nc(df&Rd@ikMb`pXuYRN?`KTmTz*GOed3MiTQ+FoM&hh6bEaHS8#T03j7b>xf zB=>z^&}(JzB<-pCN?-LZA=>JQjg8&@P= zJbg01{)WATz_X7f$CcM5C&V&lXBrm2YG3U6Jj@xc1^AvNMnEh<>s}6hgD0a)vkfen zvV6#>atz$`4zr8z|UV^hQ0?n8alN?wIc~V0L>mZ4t#0`tTX+ z8LFs}tG3jyNcP;{5}j$d0tIZg1uC2FzEdjkFyhA}!33;6?^IMNEHvj|(GYjo$hmWH zwxX|sHIxm*In~V0K$s|xC9(=s8-U5|m(amZE-EA%SQrYq$yZRUySxY!Kw5YdS z&ZmPy8*RhUBSCi7RkvDv(Sssts}MbAH90>4pPTh3;<2KceAug(6;bz-AUAKgg39O$ zIRtFy2CQ3wPJ!Ex$_+J$+F)&W*gylti-Im(_(^Dt$UA+I5X$%X6AGTuwB zzUDSZ!8zz@NJ=s4_y)mSfr9hh9b0+fUdys`!M)0}pv>*lY(wW<33h|eT- z*DQI4I5xcOeWw?bs2Q4U@sRaK!QMvmStVlB+$btL(c%Df!qPvx{i4vL!npfE&kGaI z72S}p@k2}}^=pe7+v(?j6!Gfie8N;)vl_W-cB0o6LPq%PnuVF*2A6=>ea1N=?Sr9h z(mcI&^#hOygX`T1LcB9+QQQGces;0GGsf8tBi#iqBdt}&3$8;V9t{rwpA=)sB65Go zX|3ig6q0gM-b5+IC8Z}$0&q`jp0ht#6ig^^Ne%%LIu!6c;bz4+4WrwW#v#M8MDS`C z6PMQ~T~&LHWgo;AGl#ooiW$TXUl%kU92#*1%9o(|3O#FTV{G77=yUhp@BvOc{JAyN>gY6j-ry zN8rkmJ1*i*6c~oy@lbe0*WKmc6;e3zTqNPE9(T?~Z(S1^cGS$*;M}i|l{y;S17){A zc-3321qGegTn zCp=&KvN5+oa`2G&DRcCCrPBwYA=TnFSTZLuuD6XryF-9V!-&%|dPB+avN3sVvEXt` zJPo!a25uqOp9vbFeu_*?1-n|(X<-B81R8Wf)So^&;`Rx>4&gI#juRLjilJNpJHs|RSy1k}CrY?+TN1|M$ z(X9f(0{RGALeaaCYeSoAK|ZAY;xNWK^?EUlMmmW(JLYeNA!&Ym1hQL2_W zjKc5@Gv3<_owQ>C=b0=l(IM&|c{$!)iIrJ``L(C&ip-7AH~DPG@e0kJTy?SxHLozu zelqRe>?_9(m3$xTfQu~oaB;82XkoL-x~$Q+y}B=q9mV(I^h=!JZcEbBou)v!X6dU* zqU`zBTDxqadz(1Z<|mV`6}cCZa}u=@}NA+U%| zz*YkG1lFzX=!<~`-r2lFe-RF-C3wA+l^CEp2+INUEx+cAWUoaY5j?*!luNJ|eqUj^ zGR?fcC;nQ^sF?-R76WQPW)V<2xhHy!4aPcWfL%umU?VczB@-zR|AuPFQXmrQ$Glvw zW!0WN-qviQGkUx`j3Kb>bf3wJPN@A>t{2G>Rm|kq0z`Oq~UgAlhm@pl$q3M6pZztGI4ehq_DW+ zzL-KHAGjmys{P?bo#MaSH|Z+#h{O;9nLLjyLpreQDv>{-Fp?Wi>vtJ5WH)e zosPYZKpa-IGX zq~UN+&Yx;hr_vCrXxrRmpd?&W;< z+wackJo~t2XeB7_^9R@EnTgMv8v(jmFH(1{Er!HoYd)q9zkc8TE)e!{Q0H+?-d!Qt zLSbM3)s5i~AJQ!D3RZu}(E7ZTAJz2c!kArZEu<$Eu%~NdV~cU`gonjcNLA^JJ69bB za;bCm#o{`;m&XDkwKDl4O6U8sj2jmijfyt}i_8)0R9-|Wh@kV%#)9T^szqTO&quOk zOg}r(=?guAvOj~7Zst3Ox7S&;j1T7iYW?oifjg~V3QPTQFG`S9i1BS)Sl4|vI)RzOwq`Kk;~W6PR)HM zPrD`V!nxwDT&*JFbZ7P2j;7eVYkJH zS;W!7`Qrh2*mJz~q;xn!A+N+;oj^R}~+--=ACF^AFcv z_0SQG>PqUJbsAn*WFPLnZeP{El?EU9E<`5Y@m2QX@<`*{UKlYD5&tZvEgXNjCECzK z`+OlgWy8Z13zJ=8N}-zajzm8yCmRo*bRCA~*6g&s>eMPvz^3kk2*513Pk}`<{jO=e zWP4%}cJLanGnx7iK*H;$?KnEa%0OVl-tdEYsj=ZhU~94hu$PQQHra**m>tW`eC)>r zZ|;)M(F4aMMtb`gjjoVZW3T0(ZKH4AB@;3V5js+wZ$tbpQ0KS4HZL`Z6J~VT7;Xmx zc3kW*-;C}Ip+)`3RCDvq#JVfVTqqe-!CflI1y=qiIt z%5{YH;M~yO!)oE-{P3cllqXK5?{ta_BCbq8XSofv&9~(Q3Zir;r|9k0x)kq8?FLGX zDGI>@LQ_46Dc_xa@OEbBd+j&(wP2Pdv4I&DP8S)ewGZq5K09Radw|Azz6R8^hhbMDsB0}y30i~RP>FH{4&ofAT>J*nTy z_b6-M`ECX>he&QXc2DtIk7iwXFSXl9H@^-j>b7p{IWzM*$bRi^>9?KT(*-MD2cTHX zCoD<5Ez7L?nU>??-odnymy;Vuq_LxeFUzB)2cFLjxtylw8fwfcj{>%jU+y)9anDy& zA&Xb(wAlw-55jY`EdaOz?YJ}=P6g+3{Jz)^10)Mo-^G9nRd2xg8gNnR@oQ7OCi z!TN!b#5+Rw0w@z=!&z{EbmEOld$Xo$eB`EDclzgrTe+m?bOvWG<&*JmVwHo~5PLVc z_KLj7kdznCBC?O@JkNFa(o|ihtWLkU8Xp2k#OBl!Z z1j@XJi5#>S-VoIGbMX$2*$^VoEXqlwS{Xfw*FQKBN>*#>>;ty36XA_%0SKVpA$R=W z0wKYC+c)v_gMcmf7PM@qTsX~ci;^}zA(^^fPikgJyI(g3+N+^G5hX@3Ii$--(;=We zp&ffWRnN1Gch`cxqY_I$N+_DI`HiU1s6kvH?EI7WjRs;kz#X5j1~yAsYo`F+`eixx z_7z>V&54^(>CybbddX-#<%I$35l;d5fXCByQvHRu@0}5}^C!iLaBbMz z>esQN$I(@M7;+)hRKsu+aPq`L`z94qgmZUgl2EwUg>xf6`$~?^>%<+Ch}&N`hz53o zmZ5ZY%^JAb3N^$xBHk$=5(%7U$)`rp&R9yk&%XCcilSpM-bcXERWo#QNITy#%w6p? zbZvkYSgD%2ulkR)GROFD0L#EFX~j^AKn`O0`@jVx%ziap9~H=vvZTE;96 zBky(Lo*A#iA6P-7Bzw_SQr%Qx*8^&n&uX>G{AW`D_znOWLBri13>n-T>(`l zjY}F?C2BoMC0}($0X@q5Vr0>{EMXd!-XyrqXw*yry#9DEIy+pe!LkyF7uqwGXrx&c zq%CHL`&3;AD5hO=5v~*dG>&CKK$I(v@V-EtYA@bCeyTnVL=wLj2Lc-@%%u7qg9;{B zd@-MSl5{b?Yh=~eTr-BN2Ax0Nqc*5wp%i(<(`;2PcGCTelU~kBl^#jYduU%DpHXuTh^7}x=$AJORUl-d1J;mgSdxwAJibtm(aPjz=PO5{II^?tkL`Q4r0 zr-Z8GZLfDu^RJqFn{Jhqqb!^6jBlSjdxK*CvE|&zrvMcDhLGh$etSL9-KKq9>A;Sp zMFphva`mWxebf8rook^vL9*^n5$R@araifXQ(yUmTl{-=N+mo$`YOr=*L_FWt_7YB z{_6DVA{*oQ`4{Kz${XgB?Xql!radn$BziC1w?~;Ms#V#5kk>o;Vs?3#s(7{GxwYl$ zm>`P5)aGXT#|gyF@#v?kucZZyjg6kNhM5-fF)BnPOSffrl?obMx>k)%E>t&@(4{Ul zJ)VoudR3)=%AU`I!-Y`vTX+$D{g--maZ*c{_S+IhaVjQP;4If%Jz^=I+uwA@*uBb2 zar&;1_~E7dMb8D?%;!4)#J+C!`FRIQy^j+E^-8&e3Td)|DC5MvHHnKNUY}=NncyF^ zBP7y6l^aFB=~!>2k?#aqIGhZOi{b)SE{`{lDS=mZDxbv>@@rE8qHa^cXZ^Xr+#B7pBH&9HIJ?cRR4DzD#(t9`jxD%vFF1>!{aT0( zEoZ(GkFM>v`vKjkYdV=Er`#J>1l(GuKYoxF|;k7jx6E09UZDK+;W+vsi>r? zt=eEq%5#n*&>Uv@c_=DzS`cXvOfTcX8yO}l5}yiin{BQH(zvsbFbZTZY$^Q5&L@qUPT7B?1th8Bvc`83|vvA?~qT4@vzrr4aH~hq= zE+Sc0wBID}nV93lt5ty^p{y2glWBCe%t+OKHbzsv+>EccQBdSHi&zc3OL10}8W;lW zE`9~(Fkp!+w5ouq29M~|eC>}U5alrAVjxmo^koXywMHod=J5Z_;lg=$dySD@$i^1f zb;$)J=(7d}p8=h*xq-!@@a%rSoyd9)M6Z6B*doP@sdw~UN})1jbaV-chPZXMQeffB zR_{=wkX;lRn9+W4KrVy-YaBIHHVnxd)<;8B%HKC^?1^T40KABi!K+_rbP<0D_H!j7 z3|;(i`o=D;QM6d@KfgV&vadK52>_5d*3U=~*fF1XyLxxt9pQE?7{j~zQ&;tBul?!V z^my6-Y-B$`sJ8i8%YFuxBKYX)n{)-z`nt7R^4sxE%c8T-15{IxYKFEA%e|`y&Sm-g zEwvVoj!zP^6I8Pxh_+4V9;dP8{p#_dbYVo{R!Y>=whlkr26yo+IWc8`?PB>m&IH7! z@{elmG)i$h1moRqX@?)W!p1&ND7)5v$ycG56_QL#V~Gs`JH3G1`j-1GHTaO%fnUq-BfP4hEIS3D>!EL`&w?@Klg z398s?bwncxoZu`NUyZxp-}Wjs1h)RfM69&VFmRP9t_#t8 z&Cn3W`N$r4K0xxpOvT+5%OZ&Xs5I_|iAKMq@$SeY&3UM6;K7G%_U?#v=CO4|@}x`m zrq}x4oe8KhR!{31clq?v?>~ZDf*b9KordM%{qsf{<6o!qrlkin(uzDwPg_6ogcGmJ zxr(gfTG+Q0Dz?(N;zl;|5*)H%v5p@SOio3(x|+Pp%}~>Yvf`BkmGoe>-)fDha2j4$ z4nOQoD0p0GxXS_E&F)Q>e?#@>Yv?F!ib9#S5qh9lgsC^Vj26nP%|UkDJ!37w z`6&$ESQjUw>K{f=8cxv3f~WCZR}3zD6Wl{cdVd7@jz=lrCi%bH*^I-HHnbc~HyL;= zAlGz0`-HqbwWy6EZ(4^Eo|$rT(__LH@>kE}?;FhAlx<6X?Z)pE`-L9ItqBI;uhmUQ z&uI%mF%2^1kF$*B!OWY!hkJrQru=)it@8-|U3HlO6m zjE&i`(2d!D>Ci9W(Up|pqbL{u=R|>W?pG}4B$EsSS9>Zfr_0q-J9^x5eOy!gSv_tY z(+ADXswD1RS?Lc{k6m`kO~1nfF}{0S__AS9O~CHw$4Xv~;{qVTv|%RK^$Xtd2;-f_ za7;lgfJ3qv*>(7sQbL;=!fB^(JZio}&hi>CjdWZ3mj$h>8Cb)~7Re8i&j$-Tg7Fnq zib;slT;{TgA}jBxE5lj8ep(eJhSBMGhltG`~x!2hv4_n8)Y87G9rB?mU&uOGa%5xJIWvM53B4);;U% z*UDTw_DYXE1I0T}kZ|`vnfiB!Nvi-d8p4J;e3q0jYb+bz_&D za$Up@KGv$(eDm&Wm5ASt#Be=E(U*R6NX>tcUE)!k0>{i!J~sYC+4Mb3s3w)+x#=xv z#tjFP3L{?cB-5qTJpRv99wwUydrnQ;qXWy_FV**=9-4OU=yJV~+c{@--u^X=WVA>s zP%H2hZRP73=vda4zk@{3j{C9vRL?%Ubv56SCS9mx>X(mEfEti=6U%*!!n-mWLPhP> zzKH7+>+$=IJU7&zdCN}>$t44E+SKZ{XOfzROi^Si%tZ)?FL0)w2r;GjLN3cM;~e(> zZ~0lSPZu(MPw`!|=N~SdaV@jyDV^{-eU&%NFyM6Vk**D20ryR!*X~}xA7YEux`2PZ zuewE6Zz8MkBDZ=5U{;wInPcb9b?z+bayYG}^mE^g-?w?6EeFJqV{Fn3)=k5NMynvps4&Be)t^1}wR|q(EB0JD*=h4GS%JZVsRV}}4aT|ov-gd>`UrjR>lV`wKp2L) zG?ef#B8+3R2R8(5%w)xU7DEodS~STO95xsD$D{gyZMJ*I#Po?tX#Nm!aGPDMb;ylL zA0zoBU3T-f8}KYs#y5Q4+)o6TdTvqBVeUPVSh)73&bTd7mcNsh@Lp~@>k+NigV_-> zrFd_ixfTKgH@aMTAZQA>RK~$S4SN&doF`O2!Bbm+1lsVqJ;7$(U^r4Djo1$>0b{?juqeHqEooP<;ocDUVC2^w*`H^w`7+;!2%=tj2rWk+eo0Z4?BmH^lhCne%Rkts8Ps}%M9~3GRjtV=S%@@95q7(x9!uN1M z!TdQR5gyb>(D|1P$2LK%FA_$Zwqy2W5o&SfeE@Dy^T zT`-$8o2_kUwjf!@Bn5S^Ps7_q$<`vd<(q$1vM$g()1p=j!l7J3sx6F)*$i}ddzTh{KdG;DKwk=dFKWnm9X}xXDUdpB(V}=AA0Dwc z{~lfM95&XdOWt!J?sgVS+?LuiG_z5au-cnoSWG9Ep`$fEytmi??BPwW54Ao%rZI0R ziEr;|eAo2$57ieLp-?eoK0@)#u8S5VsqyS#vdkjD=h(>~D+Qydy}{2VNuWwXg}$W= zu)^E*SJ-uBiRsL1!MRN^MGy^HZ%PbSo`HY>TF~~F5mrrb6wdZ8M*teP%Za71M=8o{ zgR{xg-YN4(1?E`1z)YeSEes%=D0_3M7m`FnqKJashY;K(p#z9zImK*-rRF||G?Yb; z8ab6Y7)7F407nCn=*6vcV;n|--Q*ACQlI;M7ZdsX(3Ml>z=83=fCO`PWgL>H52$@lA;917aoUoWyRwzz zp)Ath%>Ge<65(9P*C>R9?E)A#E42Z*A}Z1EX<@JiYN2OMsykDE_0am3n)gECg3zh z$2Sh)qzJ56Bh;US!yXn~Q4Ixi!vXt(iLu~&B8^>e+jB=%r^UY#jA5y^w*yGM?Unlm z#D#Ry^$W%tO`qQV{POvlTvCXx;GjuH*@qR=XTKG?zol)tuuC3HQMV%tH^>JH_8(os z)xj!Hu4M8;0~Paz(bieS1y*+bMAVUt#+JUh zZu||cVe5FoWr|*CExOhI`ZHti8K-hMP4*`Bdra3CL-WXtLbl*-5k0qJ975($WSDPT z@k`b=h5ndUChO8irA}7CBbuP31&yhEjI9{Qk&R$Xo&Ie-))oz^;(~$_?l)>82xdSRO z;Z4ac@iYFDS~`AjzvVZr3=_IIo!|eL0}=Y|;iXiD1LI z*dxl2m|{;#AW>Ap1vZ3$xECu!r>%ul3gGM3Ck*JeU*XN{3*I0_e1JeDpt>t&>m8^n zZ}!A<#i1%=0gl&4FyywFQ+#@F4SvY!MH`ukB+c22B5QD1RfW@t3V*u3nwx^8{u48J z2-cp=dwM@FQzHXe5kLY1PkH^>mUHDZ=FzLAW`|gxdVZx(Uy%Rm%O$>!d-^EcN-djJ zmKntn66rpvy=L|a*eP42`KrX4+2W^2>hyVQTjr$fr}Ea6ULdhyi>+dL5^{p1N_uM7 z*^CZ#7eNb9tI%vu8s9tG98rmUmu)!?eIa6$&6=mBa-zX^gx2#x~q*wA7wbjGroK5J%J(j3KT z)CecK;#Wou7sstHnF~#p6pBZ)7+|e=q$z+O9{ZDMFo`~ovWI4Jg&4*4{z70)YmBf6 zA9{O@VTeAh5w?89{`oUVDQlpbSd~+?J(NZ=2E;uDth~J0hZ!`_Z8^W^XpM>l_*2+F zA0acxvV^5pl{5O+vapK(%rMI_E5fK#^Zqs2J(*FI&ka=n_G)0=#n=nW#-9A^%(Zy0 z@u@;q7EZ9PaI^D_RP?X!BGb*KyVnkh6#efi+ ztX3G7`h~n%D81)@YT$WA^*R#GL1x(~`0m@ekxvAtvRY8#&Kzwg07eC`g5lhlMWOz6GVMKYcJVoL$>~|!|2fo`{*C`f*rjJv} zo}Acgp6y6L>ec#ADeRRAxtJ))3K1R1JVb;c&>>AQJVr7jg)2hm&p7c+vF{T`+0h(biz zo5FYEI?>}6w)8DEOZUb(7*r`Ow%iWe3Zn%ARr$&JHpRm9ZNA=6h-fA(%giF9@jPVz zVVo~{?cPRX3NelSsk&Pz(D+|Vu$&zVuN&ChTi*-j46_RO@llYv7ovo{$DjX|&Kj09 z;ZiJr^ExV_Cwq0>ssa%^nVN9yxuW`sK0N1%;UiT#8=aLQLbU}DPaqPgo!@mF!RN|I zSOhBNgwtIlSQ}VN&I(e%h}4iea_+nd^tmjsaBL!7Tf4RGT>aHN|YjQQ9t528~D)*bwBECwV z*gNDv%)zTc`_0&=C6yTqHn#!tD~c|yy2`5tJ~1Met*F-S0=m(_ld`BMsel8<+@LPF z;(GH=DD0i)cHgBG0bzdnP+k;BNebFzAZHpSCdPf9hgk1$ikM4XYb?8&b-sq~ApUva z>&~uylp)glv*r7e1XPpTtpeXn{rTY0OScQ^w*9=+ZgVuJ=8LZ`GIy-h>q}di-ziV} zCgdvA+x6>w>F-2s7D+%pB4F~KfBVb@(p^IN)KgQr1-iWV}H8^9F~3ZExCJl z)X?-u;kJ~PqU2fTEyl^aj5#9vDYNc}a^?X!i@t{qJ0@Gh3u|7Gw-8x*Z;q&rRAvNB4W*GPM=+Gv3=R+|89o-0Ni5 zCqs0{6K)K`-!l6xu=T!RQsg`GD|+5m?1uS1#7<~OC+r{Rm0SMdpTMr>Y}H3TXbs^# z?l#PrYS#ECd%Hr?2r|?Ax-|>i@J-?ysrNMf3wDT--Hfsf;^=X6-zM@V#=o7D?E2s0 zj4NU6Lskj$drmQl3a7PYorUVv;XCn{7XM;~Z z(d%!z;x4}BreLUD^UjD5$JgsziNarEl8N&pNRaXt{v1_J)BY)GOKc?e!SnJpN{)lZ znSq^xa1B+K$iR|AVj2({*ak$1-(v2lO{(5T=N%Pss0D`)0Sd%A#lfbshgsAD`UQ(; z%(4_E!1ZwKKv0e#yOK4+NN0rVzE?=f)J(AofTwBMu9vSbZ$-1n?KgiaH!`TdzlM46 zS=0zpQ}_Np?Ay64`?lk>F~!PV@6ks>E-WYPqKgi!{qRj9xdzq?fcIIb5mTiq8S6ql^ zn2ivsT&0F0)t6Dyf>nGDt<(n)8-oJ%6=^HDX|n8PG9g&P!T=J2SbdeqyeoLtyI0jz zAFG^I?NVUsN6w3F8vz0ds7wHg3!)pFhZ@c4^@YN%_eR z*X4uP{HujyIUyZ=HM|z{cVbtY0$oooBbC+0Zoila_>Ul^Z=AXrpLqvtBkCV>0eJK( zAkCp=zI!=!>kf}2M0LU2Y0wnDA~-A&HA4!%-(O?vDiMTENlW$`gGGqaySAcX)7#=e zAjeBEu$O&30&#sBJA%$!6bVHC1IUDJ8-8Nxv9lv8UvS=^tR{FwY8v(%$bKeEd>$K_=c31t=&?U-sm?d36 z{ttB;qgMdfr!x87PLtz?w85`b7>M>^H(34);|X&9eUj$Xygt;QC{Z$UQo4R9IcFT+ z$}pDA^f~5^py;7JqRCpXqLdg3;<77h&X(nuuV`1Omw) za0|jjc>|vJi<8p8`hB4o={>yPF1ud9$2Skpo7 zFWqPyuS>nB7s?|FakJopzDaNz`;wb36%xs*6#17Z)%=yjX1o`k0#xqH}f3vOGVtVV}a?3?U*gst_GME&>SljZC z5#US{={g=Eg+D6cAbEsP6CaR>1hR%TC|IicAT{Gq6^EfD)(mQly8NkO6nBaP7ZT7+ zJ6YC2Eb~E$YV+|+K;>7p{70bX0(v4w{=p76%2^`)1GUED@F5^$j|2bl&l_Zs8lF7$GUmX0YSm!p*Bep^Lt+YER4?N14_r#B5ud+PZMAC%YK1#w`w*i zbU)XYLS;vzsT+PEYOuJTr*LH{{_o6rE$V{!8+exfYyk0Q2eEd3EoW$1}NN z>TN9`D{Lhkb?_{taQX*cZhlfl)u_4k^tC|fo$0FnbBSQ2L~vEo6XAi3$Ntr{U1`cy z??`#ODVu+eB`{=*``x>dE=3#JDWD4wE^w^0uBJoL+f(w)W`)ThkhuBehMDQRl@bJ{qGa!9mU5Z`HP#;7$zisEWq8QGOLJhJ>|uR)X~5zv#i zUG1J{R2(KP8imI?OJ3hVWfJwnbsokB6_0+n7bi)Z_0h1XR`u#Qf#N`b8pU||0gQiv%57gx&pe@Cgd|RS?DVfZf#)p-kI8)p zXN+z(nIwT;{*Thar#`nJH2!;d;V;|&CcZO;(TFSU<=Y02%6})TJyQ+oo)7Wbe&99i zeeJ^*9cSzvlwBeVmf(oHN7)*-9_h02L(wjKC!2a`9RVt9xR)Gxd2#X)@3j(k|1t1% zmDUhy%UoZHqdz!;z)yC>PkFqg2sOQs(tn98TaHFZ1j&$FZbl#SExtOy`GX~rEK(!q zn{FDEWI;_NY1Q3=dMu+pCTe2-g)ii#QygDaSa8{bsH27_X#zv8%+F8B>;TiDfKAp0 z5t?1(l4(_i|LJh^xw5MdoBG$`_zA0|xQ@|+s5=lXH3j4Bz}U4B-* zV<<=-JuINm%-E5eS4Q1x`+naV_ri0Dp>!S0hamKnHcyJEh)qUDiE15=Db(PG4V3i( zm@j8Wjzt=-5t5u%{^g*rf=utS8OSWUo5;ZYd5GgUbJ_#9 zRUJ+e1e0if4%01am@!nf!rDK*b8OV`_B^8=)~68A(-c`b8TvG}*pu7u#U`Nomlu60 ziO8W=88~?4F55g$+;zIcZn2l~NK-I&--!Lu>dSzlL-yi*QLcs`z327_^~9Eeq9vTu zgCEkR7H<`wDb|3)jTWYg8D`DJDaSp-a!K+GUlFQ>m!P)8pW@@>pO!_WaMDec;(io2 zi>g3mnr`;a&Q4+2h_9jdiPv8;4vvrUB*hUegd0hye#w#zV6HO8-vSzj<@ zFC_Y{+PV-eK0smtY6nC<=|+(uc-Dg-y=)D7EySuvtc#v%`&HW8tw3i+w?oqWr1EOU z2Lnh|9TJLcIwDtn{SO0;N8KHtpQ*p^JNH<{P83ZAj4RBq1w}9HFKeu?>cRfF-4^n4pAk(hrX=}5*8YVIQ5Pl}Rbs4l&5*^ezw;WuY2C;=ePL|9 zk7GjwziUNu@&doXM2@6dj(}zSS`jUx<&rdrxzIugF9AvX4Fg)U5}laRAUvN-8LMFV zruR~fcw5>&0RN8$=t8IK95Ao8o4t8cVvEt$=;)NZBrmgCM{=sbN5$Kl2e0ru>%*H( zc8U3T!^_{VKlD_NF8f+plumYfu&H#I-?ZIo96Szim6|=UvN^g{690WG;Kii#$Yq)Q zFKS+AcILIfpc(JO=P$+b;u{KEdShYQYeNeM?iNlxmLAfOFtkg7wPY)~J5APkMIp8c zp3pqaVx~20e4|jAzM+76BNa34s85vkr_LSzmfyK$_HDnM^kLoOcKS`ON1{-bbxKp% z4Uq0orb5ptbstdZ562u_ci7hOp{-@BOJHll-@FUfPeQc@4^H;(dQOT2YORmBU3WT! zf5&~#8OJ7m0Zl@PZ7}AzlAQdjfGi0=kvVxQJk8th`a<$89&Uq<0D(Zw?8Rfd{4a1N zy$#mUM7?I3rwQUv_u}_fy~_YN2Md5&hhpf>;W(z4+@S~jWuD$%4p9GN(gch5?qUZ2 z^t`}`cyhk{Tmk`%ACP_?Z~s-U1m8HcFGwPhSlA;!1*67tuf9X0BMV5fBCqp+Gb<)4 z$O4BLi7!=Tom4!X>l1(*kk#FZpq$ibQFKswN};Y@`A!5 z=OxVl_Kxn1@KEb=nN;#a)?)H1MY6xCn&klk)E})_{v!8&dwp~B>nsq3P+jG_Ri&ABToIX!&NJ=S@o0UeRc=8;N z!A{1EmkXD}0eC1hF+lxw_j02%yY`-f3_wEW3d6rHoCZt;wvN6^FJ(szZX`WT7`2@O z`@Zmh1OisROK$y=;0}T@Ajg`WaPflu$cLt^nUBqOLHH^2y(oWREw46r|9PB4f;il~ z1DlllO*hvGO&-lO@5rs|u@2j-|g2QOkBGWc#2K0)kM~j5J{bo!M zT=BTg2Y>mM-c*+hA(4;bFjG@M)3y2*($@)oW4}qqhf?@r)BhuIku@T9eb_vc*g1F9 z0kOKB!oD8Buz0@TBggtD$0mQ@_q{#dV%#D?%XLLd_O2!AtrbUp8Zj zit*7v$4IY=#Umjqt7YyYAC>mivbz1MldU^m-{5~krX?Obxy&b8~S8DcX1FC@?C zy*L6JnPvF5?imCuKU``d7rV5GEbVvAeic>9sq@qIdB!?#DOt#7HOL_Z*7S7NH7wGem~f)En2zk z-dw{?vMV02JzA~L5;|d5U-qTz@i<{G$Dd(pshp(ve=K^q;pHvmFZKTh%=nm(u6o{& zQ8yWT=ryhXrAo2fjvhN>Dkr^Lu3Q%({@B>;vC01Cy|HuI8-;g?&(o*K~bct+3M*^C21JhYd9{q4=KN zl}v-cj9VxC376q_Uew^*eG}y;r#F2vqJuzc0g%F=*~d}=Oe`aU<7%MHhNO;Y z&?`tWBdN}6!5_@CD}mOG6!0M_jckT@Nr2xNV2IoKN+ov_E)Cp8D-&ZJ8s@2U&exKP zM(80?x>7wWon_e|X|Y-r7~1i?^(J=_@!EOm)9F#X$k@rSDQgDeJ)$ton9XurByV|~ zc5@>@G_q?Y!g|VVe%?KEve!bESi}7o&zOLx)l8tksX<^R@SV1ib&ypDckn_Kj4@#Y z=w4Kx8G>;rHNTIt-wF~Xv&Dir10K*Nu_xtRVKwdlVR8`pZkdeJjOUIjf>V^;|aW)ToP4gZsCvv^kHVRviX@|2x5){2Dn4ZL$&`O)2IfYRe3?fPIZh+S3Oq#_PEi{gUrXrIPHJ`lJM4a(mboivBru z-X>XR^K``z86ZYu`BT56Hoo-h+|r)+^w1zOfPR<QT1HGLpU6He|7DSD zZ?n8)>Q6BmqfPX~P)VoHF7p;^DF8;-uOq|`F@LG1GCriis8WpbX}|rSLnqyw+nX2$ z0ge^G+{>EBQr}=j?S2qO3>84okVBO-arnc~Jd-lt zbo1+R$Rb@hpG(8LR*lQAioUBEd?FwXPUA=994-S}&!2W>clCQNrcV%b&U( zzuhE)OE~*`ORdK}kc)%Ao@sa+1P5uMg(Z*6`%F}bl36yI1oWx!fP87(_(5i2F*{Vp zlCJl2sfs>Po2+5MVTaF=w_&aFK;os&2u}@t!PcKXJ|F+^@6)fr)vmdipTV9rPM!2C zTnf!sG`rtY>HKwQcth@*^?w8u!X|8vB5AS4gD3O4e^^P?L(s}%%B3|`o{!|ZYrh?d z`8`YtV$pnEu{HYnSLvK#87y{7BK^S+O97$BmjVfq-viPcWz8;vGC;}QhraN`QXO8A z_!|G({|I7-Cl?hX>r0l z>Ctk1@}Qz~q;GxAtA((vm+qOjfX(dkU->Q2(V0D<&R4v5nxID4kmG&*b!^YLW9Ukt z%M|`mvsw)D&V>+bv#(jC=}9z^bX-J3bmp0?!AuZkJf~zwRrw z>_Xf!VLb3*M0cftfUd-j;hln?v*jzp@3-gI&!3*gSPkosul!DsXQL)}Ze~piZL2-0 z6@29_bGOARXKufxaBhF{dDFED>@z-{>*+nK&0xB2<{o-Zy}ku{5-}cio31O)mbJIX zx5{#ylD{OFAWEcNg-Ul@gj4b2cEcK_9nICBPN!Bs)A`9`dg2X9*rbws%9diEBtsg> z1FuWIzU$WqK}^7wxo}%yLhw=zW=Y)y29)%u3)h2zCxw12Q7Hw4bx}C0d_cYnNJ1}W zBU3S3V}F&e9xA+k0OaW-Ut;( zhIy7Pj83iIY4lQi^G*!lP2W<_NebO<`M;1OPI(c{fLDrpkBO3X0VTYTz^v`v^f5zb z6asjFn^LK$&b*6Dz8(Dt=#{qs;MEeOnTpv&k-1^e5ytF(6JlRTIbiq+szeyVKTfUuoa;ryh?cin)}9D}|Xp_WQt8TGewGWJ$Wi?)U2FCRIgN`PM(JDf@Icp>MLov%Ez<`fC&f zZKjoek6*QCy9uX|7Qx~^NxLCSaX%!AEPKkJfZUa}W6}T+-MKedWs-MpeC#C(wx>sS z8j*-z<3HBG)A6D0BRxHCywB>gA8 z_~iicYn%TFZl_!-Uhuvy7;m&1be^YXK6kOboP$0P*_6!3vtE4qyUu5LDN_6R(m8OV zg?B&tVS@e3#RlG1bT_C(KePpAPp!(^>%RqJ_D%LujY@$1%x`)!q9EJySkp4aSJ>y7 z^zqcAlat-?oWSh;N{4E^Q_OfpPFDYl_Ot1IIm+7R^s<;e_jB`P@?yEyTtEMWkDXW< ze0Go(;)_U7ZG~2n4{#;-)+`=bii~X)r{DQmLJwNDP%Fh%8_xaJe&<2LsTE_Y3A5V2 zDJQ4L-#-buDZts_CF)&jTFjdTqp+{%G&6kXW*31}6&vHFS<#tr*Iy7=WV^Kj-DR#B z9!>i$V3nEmzhc1Bhpvw#*D4!JdO&S;+SrLNpY|oBZj{_z_Oqp7ELRVH);pam?7)(W z{UdkR^2p-Be*_|*{wfr)=7f#E+Ble*$Fw(Q9Qu8J`WHF+mrXaUCK+_`)w`%aGx{fM zfV6a&GBw#ff_7C--g%r`$wO79`=x~ELJ6$JpMY9|#}Xi^V~M#FbnI#hQl@h~oP|%ES&J7E5Z2Uv-yFx-?-z4?#8)aeO<3K^F1zO z!c{VRyNl-c6>4@qgbxPzgeD=<5;0yG#v;itBk*Onws`A)dYf6Xaz_SzEUQfU{b#^w zZgH;~=j|ePc+gv1u+TWu*s$+Z!~>20T(2O;&jC4g0~lvm5x;)vQVE=fy$@K)@Ewx& zrEDy*fc|u3o(m)PSTH4*vhDd3Gt3Yeu;0L(KLo57M6E%rx(B{!ui^i`wDA~#at3ad zTER?FBT&S)VjgPn7(C=cP}1ZO%cXueFCv29c-Jy&ROFeSVOCVAK64$=4lp%0^hktr z`{B!~%Agcoe}4Z}Wtb->R3_{O{MF8yJahYcznWGY_cea~3$TLgi}p#3%0|GMAmddK zT9613bjxPcf#67QLO=I_f0jnu_=2I8MyV}@vO|(WW9^->rOK*PEy>jMyY=sX+WJV> zyB(Zo(s}57#r)i-`?-8lsway-P1B5O($U3^J56Br4g~C=-&$Pewg>XZC*zvr$}dw3 z8!Fkyc6PyB??i6D-lzMI;Qh)w-)gIZ<-^Fd4o$0#9nx~dXP2m7$i^wY->1K-B%gR~ee7L9fvho+?|`px?Nqe6q_P5B?m4|3`5^$74!M5@mf2BRO4CH#n^Z#ml{(#`k@ z;f(83Wnj3>a)Wmq4iReDB`fp$9PM@-z&B9v~#1*`$ej@Hl?=c8N9+ zD>)_PC84%SYDH#aUvgUJL0J`us(^mxACema3onpJ4G7VYNY)ty4NFXtH^cZB`x%!CH7mZVEXKw$Svoz z7qPeG_AVYSGs*tS+Bipr~# z>GJ2li#iTl_A`?g=&Xj#Co7gqTGK7xWopZ((4E|LjrZ7gn}3KmcCyOprXu%CvG|blpF?WPOx2{;S^2^>7#`Y5E^Q_s(1N zZo%*2U*`>St=jH53BODdF>UPKhsC0@X1X8{5mq}S~WX(=xwhvBQ z8l3}K1`he66z>ScF7JXe1c`rMiaAr3UmFHrVe?XglD&pxo?dFDv$cjDjXR06EAMBp zLK8ja-%U*}`m!0hu)7}pM_|gG&Ki^UMA*zKKf9Iq$Lbn*hA1dTmL^u(3&WEsXI{9; zj7=SSjcL@_)TQlo3Lpb~rhg7#RmjaE0#wR!^ntk++?5^liUCRL&zIzYsO*B^lDZz^ zOmLfrbPjxYV?orTlT(-K!2>yMA0Xiz%rQuc!)M=}ApBYs(NPNK1Nfeo5vTbH`<3>O zT48S-YdiWM#>V`W6Tob*{;ilvlqr-=-TAcdgWED0aGvNM9PMDwReUB{mqZVW+RapQ zNE6QVryM@LV@An)0FJHVM1V@ZRHpH+%as?I%r}?I!_@V>OLjHFr5b;4d zM5zmcQe&@xzYPuc&8XLX@^CyY0=tPsmt+GmxnEpQ$hgn?Xty8!Y#lQ0nxkdN!JuJn zR#EIte!C$)%cy8wtkMVzy1s!ZU9!YA{?3+c;^%L*rRx03FiD9bq;fTmjI93o;Cwc_E_< zJ=Wq)zo=4t6lpXMB&oMP*{okb5AoJepw_v4=z@eCVtAu4U+68RPuJ`UB$#Cf)^7u# z!Ge&~YpXiRX-OY=M82_{8i_DgLk+_wUa+ItyRlef7FBzzZtNxh5EZK7Nf7@6bMb37 ztS@}ADah+XhrlmqiNvR0pL(Z_Ck+@=%_&^X`7a5sJ38AsT^Tw7jy=lN4Uv z!{dTK`@Ts&W$Zop67KP1%(VM=4)CQqo)TjMbNNeFjkDg$2V>dPs)K=kr$&IT4 ztwqzY$*f<)+FX@WQzi1k3dky8vq(kPBv;brrF+Rqr$>5hIF|$u^BJyC{aEfERDYQ# zVjY^-{zLk`7(x7THrtntZ4LOZ@3L9!nQwNfcs9%RUnO+jc@)T~yW;20{nW>wj`JQZ ztw?OB;zx5=PQ+X((5!jrc3~SS{L%80bnfLcDyR4OJ-5~9k%x}hb_Jv}Lb$29v_?dGvTPx4N-_DS2I6^$h+6 zBk>y=H3r&^$0GP)z%wrg61eumF(B!j175KUY9Vb17}^LjONKJ*5^ffi_H>HOUJK6! z_L>;eyVJEy(=Q%L;^v~Zqwfy47wyT+e8$PnC`&RD975%iqJnsE6O8S{T_J`BGff2T%SZFf2~_TGO{* z@1b&7Sf8%l6kX!iWJ#4clq{SmY_)SNbLL^}V|Cl)$P8)Nm!r09`| zQd7@&7uJ(V9titgY1K`0z~ghhx8vNbDQ_6M`!w!+ODfcSz3b=Dk7fFtwvp8->EnIR zmgpd#s07e^4y|Am_+=3go$qLz*f#8{_Q7zGC-ni^Z1xkVG#2Yl88|ZAS;zG+++Jnx z&YHZe%=byF9Ue$_n0~Uv(|7(FTK&}Xw5h1ZvMlnbQdiv|e;CGT2-&H(2Jc5nYWWcQ z1}Q6UkA~JPhje^yOt4nCD+C&?(m-PWCrhMD)1w6v3J@gonLWO)mi;*Q>wV9EWJ4s} zHk`h<5XHP>0zB&@n}-Q&{H@Sv6ip+Da`o7Io}LH##Af zUo#KylgkKM1rp>uSsmNI>k^ZDmyV!#_3$NgLXa@q$()a5{i`!4d*9n-O5s2j*C%yt z)Cd4Q1%SEOnCOFhy*OmH`gpM8`9Y>>`kC3GoVJ2__gHHz@^w}R@$Z0NI{SF)5jR`) zVb6Lbv@i@h=Pt(vOFhe=RFJ7m>9F_&4BJ1LMKh3*0g^r?Pn0M{>RX36+ibD8(=+C) z+7>GOU{$IoXOhKKWd3AAxJeL@n((A?Kya4`y-y3o>ExxRjEq(> z24cvw6*AiB(5&s5dTdwBFdmS+iYXYgU=|}41sTx$hefyaggh|H{l>IM_D)m(tiglj zs+>64(1z?wRQkOK@(c=LsX1=Mddvk$^<7^bQfUz(=rY%=jGv=7%<#vIsD3qV1NS`C zHgj;c9i6y7d-k-ULyiCf^cU)d6{^^;`hJr7la#H*pkwhFqyxIg4fDR&4-RjW&V zQ&s>hS;OGGvZ`m2w!O*JC0$>N@@`w3+6{eaY#55NS0RkJ7WFs^nhk<=3fByU#7(NvY+`^4PP#?EP3#JGin z?Fu;&@y(+-%NVI2ue{Sx=3Mnf3;r33X~T`nK^>cd{qfzKhvN3NcnkAo?eOZ3741xp z)mO6a(?i%)b%EkPPE}>>fx^|iGit@zc9gPin|o|O&KgF41QK==ofAiL(TL_Psc8gK zS<@Dxow>O*)b2he<2;Xd_fgdVGndX^#>m13VpdnqMaBIgU6@Scz0yaeWSI2rd;}sg z?Udh6bG#;*6#CTPFjlN*U4Oob>~U`0KJm@}kEOE=Xu^BnK8k<>f+8p&p;FS)9V$IS zx#sFcJ&S~^DeMyJp5_kZ50FBFxXbD!(JuFut?LN6q@ zb}RR7e#Fbc&=Pbq&DG?AGZIM%%IKRAM_?7=RT6mv+W3%1Z_Py$cmp}!D{bY!vEo7J8(N%LAy5qbYBxrdXe#P_FQrqsj{WB~8a-BN@{J|4Y@B zEol0pI<}5wLdijh^{0b|4H=1)Ky~(p%B)(B=9#g3v89!iC^($L zv)#9Jra`TaW6!kR)$3)ZQ_LkL#Jfrm`Ylr9$?J5PY@w@zCV{llV6)j;4#UH6;ue)= zNhcEuG9)-yyf{*Ae5md(5r-!zWvQ(|b?N;iCl#NW*|zl04MY(~VL2%iEz@eRJSY8q zGPvs~@g|pY@UtUTa?yJNuzoept8hM?{nad8eI3hglMQthRFtBt9LVIXWNPCvFq(-oCPhXursRKlAIvtwoct>~vRBkE^l0 zixB^jQ0JCv1S?Qxj=Qj=v}qa#O#fn{Ho5%|V0FvRs8RiLM?5e{vMs@=2z1yon_f4>v)7@w4hrCLCcylMaGSMrC3Oou*(``7n3mVb5OG9LWod za=}gRkA4x3cZfaG&q62*qF>%b4Hi4yxvi~i#wPmy247cHko!(kpC$wZfLWD>AwVZ_ z6gX9)d=4CN0_h;LtQ_IQj(yO5O`mS-4>x2&MFF@+|9?l(bGLbD2{1t)14(1U-d`z2 zPmIKDhsqzh+1+`F75nvUDB@i1rgrg6kp=hbN~8M0>(7$J29VWSIShuWsskD8MvV6w zMo$4FYD^R;9QPQZrDp5TCn$YfMFaf+P+5hGQnshFqc zVi+h4AOBf0^`W?@PKZxpDnCaRm`H^TBCnQ;@fc|$v#%KCw0{zFM8*`nB>gJl$*oro ztXyUfHQ>a&+6jO7MjpN^i*J4o^qN^a0YGYHo#Zj_5ao&bti~9n0RtlTb{?n$F(};% zoD=zmR%!MEV*d#6Mi3P#@xZ+IpEGO%pQtG1uu3d3=nXl%3%nV#Q z^qTlrHe5aWf^l@IV?j(Z`0f#>DqbOz;-5uvJJbn2&CXqfCVmM-P7J|{?Gy>0j@p)+ zz29?=k=Vo(nR+sDHa-=%=-PFRsEQ_{G$+z%Iq=jyTeO2vTqWA0+kK3*%K2rS5em&adn#r7HRLJ?g?0YWMgFJJehEL(Y zIc}*(8NI&-SGo6s{reX+)Zq6g8Gnh;Z&9aLAe4!*GSArcK@&7P2_GZ>Oma8`^;Pd$ zN&Ih%FPmk6UWZA0ULF-pob~*K+9-=u!z2`hPO=m}c~H{7=jWKZpeVDYIR%?W>CwcV zkpiTR9cpNi+#2-(*c;azX+hw15Ozmh1i}U~>cWMco)2^{3#AO@!E%4y~dRcoM%6q@+s6 za@L!|?pSg`f11)3p~CKzxz?fwhT@!Z=(;IqZB%$PpBF;rBSHYvXl+|dX}63jTm8(F zTz7`)krv00PoBH)=O4L^G0AUV#|&NpRo4QO6kTAI~7O4@^OmwVuEaQ(5O2T$+4OOQzkH>K^;MMSVwJ!F89gnvgz_|nzyS1SJ>$82-~na z0V97UC&&0iHc0Y!WPjj*0Y3k|N_FV}^&G7`)JKs&MTWE24P}YlQ4T;_1NSL8is7Fx zB1e*7@_m z9=I`?UMq8C_#$xG?#NQpICH7mC&6=#6!#7%1%tGN7-XJ_g95aNF(XAa=ZthpUD3oe zux5~H!&m)AZ}W|C`G_;NiaFt-g~1(tZQTpRvIn^l9BdKU!HXjlc7aNS`)xz z_gfD&2eyoAJjq)hJBai=hM=qHN#<; zDPJ?I%-E_$5)eV}8Mu9DT?=-9`@ass+LFj4_a8bM%h#Hf?Ud zQId}NuO#nT5Bf}SQsK0fY*-{o4xM*(d~uu{5g?a$^j__%5gFR@_Znu7`{kfxFBT<9 zShCM@)^D8T;_e$U8swtpJofdkD?PeB>fg_}$C*%XYel;pAg_}khM>+r-6?AvPd-(M z!8@567~NAmndR!L0oj<1%LeC9k){dxaHXO=F2IiPEi0ItLuv{qzVo;7H1<`$amL^h zGpyqJFs1O`q*nMqZnaJhC&z#ilE?K?c*(=9NNpbw_w$R0;OkL40(};hV%g+xABDma z{_y~2wemC}9s6_zAGSyn!I5Mr6XD1{=$7}tfh{GMz91!|ojR6}G;!yE6uD)jm!S@; zs#?NL-V>k-m8uHv?_W*Q7lp0VE_h)Cw}Kt*%RZkl#s3U|^G~n#XDv($?XpkJ%d z)NbwH8u%9-K6MpY2f{D|qutb~Ih8+?1>*Mje9DA8;yj46UI0XP8&5^_EfMib4ZsO3Vfzs*wi3cvYij z@>8%9N;DDuz_2w800?6#2Hhh25)Q z;SUmgrD^}fG7^C*@NwVK1tF8Z-jO16gKLK1Fexza9g^VHwB>;*qoRuE)e*`#(K2Bl zBj&g=2~JKHMC1>@3Hg>eSuYKv(R-eCyTPRnGa=Sd>SM=yg!)OC+0{L#$B=?s-Z zT;=4hbYCrk6UD@P@Lmv-;arFwFN(%Aq)VBl0 zMb-FKzGUGd!_B9!8!I(`n}I|kqB)xf{Dys73$%q8j;Y6r?AI6yzBCLz>PF1q>7LOR zPrs}*RIYmp4zrARbnc3zR}6k;ZPV#IjRCp7mm;Q$gF-6*G1%${=YN#l605&3}^3B^>k~>QytdSCDzOU3_ot7`ljf-c4VkUXM9Zyqf%Gf zOHqxCYb4EVtWQ;$(OHz_hL)P2JN^&(K5*K)LpJhUZ!sM`5ju7NinBF1C7it)3${}NRzD5*~=sXUx4xY{0|`XMm+uf6Z$4Gk~Qw_&=3IDSY)~8vmD*Y zLB#98yk|rd_c-A^e^{)O`tk8Or#s|34yr@4#}qq`nhJG-A5D|hPIBOuM>hk(!v$TcGBA`;nv1W7ck==&N|vOpq_ z!B>A$zZ(C|@ru`gq!o0Ee$V&4M@pi~3wE8~F{;y#z$wK4@FGHp59{Y`6&e!GXGKfacKrC>j6JX;4Xwq<7v{ogG_vkXaYVjZ zsTXkG33ikh%Gi~3{#S{ecrt9_NQLnDSL}ETr}JFyw3=pZpPysa*#CCaE019|(S+!z z^AzsjLLw*GKR&NBPSnAVcK-m{tH{LsE zZ+K(7aSbL9Hqhk7lL5t@%y7n5ayHEpdBc!TVulCX&Lgmg-_0=pcmrr<20fqyJp=JF ztkD+22>(pM`8k6jH?cltNl<)&y<^2+A}N?|N$`g;Ds8zpHQ+{O6zq0ndQ#usKBl{P zVv*dl9$MLcVsa)CHOS2lM3grNXy){K!Q z+XWAz9x>-y;CJVHr{cuHrU^1S>ZP<*rf4hBFP2jDT;YmFxjlqpuzm7)fl%H2>!l|gQCMz&E z$8tKE$jb!rG;uc#w@R4H6dE`Q8G?ND0-!ILKnnw}7b#-(9`k(b_&5YoK?O0xq_IjU zYbxK-*M`KL-yT#OUj>mUU4u04fIKI3(WCw~8(QSnZ&NYC6T|D*V#1NDv0yDPjM{w& zmgFe>?Tbpo_iNurRp%jB$nR>)U4G}uB%*xzubK_vn$7)D=q=+%N)-@$Zq&PW)5G#V z{aC&^#b5Ls`p}1d<2QSsP7oE+cJ0_NaWWkeRZ0KRq4tA=nsW>}-jNd0I zv1V5BJr)K0n`ag-u|YN=3K5IGp`M4AB=9LoEp7co2SZp8>+|-OZu$Ga<{MmXXTTl80#mn>c!Gogui+)Aphf?V$#~xdPn}Duc7MVBm(gt zI8Hbi4eaLG^_a~b@1k!>YKzXWzSCq(L=C;P!#X~Xbk7M+A1ZPyFhlm6G8Fw%eN<)z!May#;`B+V9@;OyVROs!xy4pXE;06zm%;ZaAT7B zhZ~nsbxKL!d(AygLzO3ue^&PhSg2KJ1kUmhuoB&w5@DB;@-jN9d$REkt6}Ss+n)dx9InRABB zrLn2ML^>_i0dn$AHO9XLPDjHc17>9NdNNFgM`{D_byMUGHFg!4Ww8uYiIDO=A6L4m zBu2ZQEA(hEfU>Ml9qcTZ`ShRV$wDu0TzDI|7>b+ zj9;ARuu||k;uhoV$`5MxO0e$jtNs9WnjznE9>o7lo7Mq)lIjO~3mCoQQI5m3jg1EW z<}+ng^O;L_4Zf0u6~KzHZ}wVxeG{04d8g0%e*(^Hffo9(`42V-OpMKw5Y~B&4;J@#ETV2?%u(U&n%N z86+nPAhZyF2Yde#;hwy>XsBho5Xx{^0_*s*5S@9P0zRMYhEQXDNpQdM-C6zPm&<>N zm{L^t<*JSAR>pcVs)rX((Q=GUe~E~JvE#0b3}b+B)1^+yM4*_|441IZmXD{oc1P1- z)1@_qYfwk6h_Wm~UVEdjqbae$eAktJN5D}47bwL68<~XAWKzEgjgtZ84p~N7lO;I} zdaGbsd(l^1s82;qV$xv%J7xsLspso=9bpBOoBg4&D_|ME0!LqHw+Q@+1AbZ1kuBeO z9;A|(@bmt_TtF~-rfLvk*h~R)Tq-Y$G{H4iz07iT#li zclmBA%GXR6SKWCV^x}%r2z?x=qs=azlN$#fCz#~iYs1o8U@R1{>E8IpAo{|vq-xT% zY)E3aN(c$a409s7{O*{o>~1(wchbWMemoEuISn#tFUv$(Dtbf;Ijy;A$6QnD&GqKAAU!sM*uuqHnn-0*HUAiR&e9GWuvYTa}W#~^y ziBsnM95RXHL+_S}V_x5!^89qv>YCSupa3Qo>K@hKb2%2V;;h4^mEj;b=CwBSgllNI zi@tkZgUiA4p!CD}eaGn)v#Lde0EN)B<qYe8pzt>arRw?B zacEIlucGYTn(8K(%5!p}N9u-y%-5J%yBz*7_`b!G!Cf-H6wjoZTF5qNL& z8uuo}xhPsS7_+(HRo(o$&>IqmH~7%%9{JyItM=b2lyM`CN`zcRbRfvkF9M%?&|81{ zjvcQ@6`ATw*h|nib_z7f7-tXm&Fg>KX~Rt-RmCylV*{I2A}w3NHgUZD%(1d^J2?~9 z_hl|;4L}KiZ%=tyc=J9efa?28R7<-)?%5e!C}$ZPS{vq&jh9N6<=Y1KPgq$aJjCj< z6VRCDZ|>;)#u5&W+(L{lyFwoYGmcaJxUj;kfRnLl-yge>AGu!}0*^m1JNtAHbSBG* ze}lSsQn3xqPm-JR+o;WmaXj~4SI9fvQX3|4HAWxHY^=7YDobCEb@x#&UcO$KY@6|m zaje=yXFg_3tEj8NA7;egs8}{u2tVl=_|$IOm4~6=J9l}WFRTu_l05gx^|whBIGr_P z<&9T_4GRtzJP2DKw>&(jYy2|qKRwZ6JNJ-f70IN*Os>oFx&Xdr{19I~$HkNXWHLn- zy_Q>4cY_`C${Qhgi+K5|vD#wL!7BiNsl_p8(3X zy38I0fI9zS=V+fa7lNw$1ArX4;FW7lF1+vbNH%6RaL{tj=6)Wj*?*whC>uH@B{n+K z+f+j3>-~_oF{QOuyrD5zo{NiP?S6>_esciNwE{1KxjhsWA_S zYWZV3vbh^V71S{%c-&`E$i-9C9al3G(&x2*eECUzMtJE`DzT+n*6B!6Fuk$53~>IH z6>#;ebBJrUr_&b`En4lH9le)gUpA9a%lYY52Oc~7X?_ER!(n&fb&$clH_j_#I*8T$ z0H({b<6%PnaSyb+JZfU7578W8F{_TLZ+jD%c_%Z8b#VBR?><3nd~q)%jEi}5c-gL> z?Y-8sRrx0}B94}Fb%$e(WHN$#+NbF%OUGlRr@?tlqqQA;e=cDb+AFLI?TaTYw9|b~ zve!!a)iQ6^NTxRjH_9}{=@gEhijD*KmwtstEz{{qTs+rskjf|h^N`$mfl0m&E(dD? z*=_5B%7OlMSw4d5zI2Y?zw#hKr#&fPTMMC3#jPX>DZlbDnsPuOO=e@~w@UYN)c zdia{CiF+pHGJ_6+{Y;q;H7+C#UHvk|$I$CwDK>cEz2b-v1-&LIVhGt$uI@fk{)A@l zNwD>1l70JEi<*Cu+jWo%LJ{g%BT3y_? z>p3^)JvX-fe7{BIM@KbF5PI*3}#JgTTKgnt!uMaPE682}L=$C20pRr8H`s&UcVJ%3k9_cd9 z?A1{7G%ZugGN`qt7z#?1dxT<4J}3*mwJ-Pp63S}Vl=OCTZvdv7!r!4Y_fuiPtryd} zmr>eU;DM9Di*t&^5vDy1FYc!`YR6dLGhfALwlB488BXej*JEwphf$l$JP~Q)OX51U z{oz)`C67^#%j6o{0E^h+zeFtmJRr)|2IW(}RfOV$0PvSG7JR*QklAS#!#??H21l3? zOgb>x_d@pH5Vr`^$)4~#K98~@OE@@lc2||j%*y1i>mI4$a{I$PEyWSQgpr?^>1D`8 zn#pQ|Z_}!8{P5FB&wS?d|8>=Cd;yIw=9sSlJO>(_iz*9%ck2BML-dO!S`(a+&Vnf;#7LL*0HNfRjv((XHb4)_9$T;`nl z3PWP(JOH6?nXiO`#~{S@K`!M;kuQ*WzD4J}WPCf2TdHtd?9^V3LC^l`*u6DczOmej zdgQr*DO7vi+1WK0Utj;PCv81mKQbxPlCAN_9KmZQVcZ{#V{f#M>rp?41EyxeDp#9y zavOanq%Q>Dc7g9fn5CaeKvRa>Sak?>{QkL_c6n1bzFznl4a9I)cU*U5^4G*n^_t_n z=h`Y30fCpo+=>^P;Poq{NdwND%3gDc)EU@5Ifv{PCrugZe*4|AKP^yI16qm4dn(HZ zsqLu!0Bmk|iZM^#UZR()jPczW@zf`KP1-6pVOiEbpomQSbW9boQCGA7S}d&7Ygwy@ z$IzlK{ZdfACmJtXmNVosZTorjn6kH^nzu-drIswUbfyded|^p(lf`dRCNz8DLt4)n z<5jgSedCE!J7(h!V(gGb(OhikKtH_)r832L4bWmE$gHe6MQ8s0IHJpuUj*I6MHf`aRUowHR*L~&w zqrB3Q+C|;`-%VTXceIMvD}_o&?FvyoW@wpE1rDI3iF|NJFJC&VQe$($>$5*iLHaC{ zy18}5thnW;!#m&ar*1bdbx(F+?LHITt%p*l4R@(TKQ3LL_oQSB{rXs?kB&x|=rj8x zH5wihwIH{v)_0HCjW)}C30<3>xc%!%yjl@j5d*hq*mV!7mV`PGh%6q(>v_BCoY84l z?sj&Dw1ug!u-qe7qPukq<%X(g@n@(}TSS^2ARalE`o6mN4L6ynDxY@W$ja)2W7esK z^?hy3j8fdry$H-qEL$^Ha#xy(x|dI&_cl&{A!-+e<`i|a=Vctgtj4j6I8fo0TO$87hon79CtjAcESg@?+;026Oz zVhCtG5^S~aJbk5K??$~L{uvyJ)rSFE^NYX(VLj>!7aVrn?8yA7fjc$kiR~BfygRE~ zR!J=ZsxwX>8aNs5O8M-eOIn7UXH;rszUN<5yJ5)WF`>-bI;ae+m0!5ePs8ZWger;U!oh}!6Hz~<*XxNwighZT7PSRH|` z=D}BfZGv;?=DAk&{wu8{(ej#0CMxx&(wZrwKv_nlxR?eOYSP)!_CyKobQ{&-TbFJ= z3Z2K`8~kL~(Pk!q6yEjmNWSs?N>zw;>+3-{(6(85m)}75LsJh}xH?Tewg`55sOzT2 zKNh@P!6Su*MIk1zGU89v-NY%mYz{#t&FbqsY_#vWsTw@Uhjk#A@4ln}&EbzWjaY6C zG&w_~^ElIK$jB#4-?5fk4&iHW=p-w{OVv}k56)XKJ*+$MZ;JJcM-W0= zlA;e+e?u34R1Ge5RQW;&mbW_NHXSS2{Q@TxcslVKotf%v^(qo2Ia0iF$EUL(vd{ry zqs2T2Qe0wjH_zq79ew2Qs^e}L2JuVn6I@!edJY<9RZ9Go@~!hIpzCq&>u${I2TA5B z%%qX3XX=LJ1%2@noK|C>aOY1}g_k@ERqYrX7uO~Z_D6BIQxLgWtRuJeHIJ<>w#rW2 zPRr}*HCa;MH@XP~zhUna*%AlzDE<4g^zFxg#bc8G5_x+g z!*JtLpr6KQrEYa+X)DBPmTVZmF(ZBwD##|#Mfbvp!^gqcEu;)Rh}*5(2Nl1lZg^Y0 zKmoWG#xdhkZ_Ig$M3u!WD=zt+?~6Q7l6LGai&dLioRF-+0~2s@|1L84 z*H1%Bm_WWfMgrMDV=A%bX;GCE28Az5TKPeo%4AN^t1QE1xzis zQO3lLoy*!I3n#2vHO+Qjfn{{*iL+}SAhPA~MmxlJ6Mqscpe-|A*xQo<(Lan>;j3t< zg_QVLY#Fl*5ZLc{zz^E*(@SUSauya$TVzE&)KpP6x{8BZwM>|@5o_8 zBj(p)ZG(%YcQky>uAycF@{Cf1Q9bEFTG7>0wqn-i|IqmFu)?H|8PlJ^QRwYZ8S84=RE|^g-7Z6*nR$ zHZkeW-}3(A(3vs zVJ)$8A)ngg1H8M`cT)0^uQdj>&`dml{lsO7TL_*lU7VlTe?3)dOd7XYzlpCM-3W|J z#o9*{nS${!%Z^dSjW`b<wKxMmKY7BdYMkZbaf4-cT*Yu;X1$Yq1UG+=vX!04UvJ zly;+HJl0nX)l7v{9{f|frO0-j3{aZlpR*D3Q6#q{39Xw~W+$f-MkY2P-`2ekZm~@$ zkc_hl8;X`NAuTNG0(^QsFKspR;7;YUZHMOq7A7auwfMY=$;j@e4Aptrk!MtSA?}~L zQX-dH9Dd+u>R0qzV;%AZRlz<-AGFkX=1ninev|C97hvi679$TS+GgvbQBcDdEs*Td zbl*Nae8jwtmZZ5|9-{O)wyL;At6Kl|hF zdndtbEJv~XqepS?b>;>m*M6>N2Q*=PFlFFCgnO?}+xbTsAEHYm^>ezG&1af3Sc^sj z#Z5z{)x)Z7YCNP<1H=!@bmBMmGhzz8y$V7zrsHnbANq;nMKj{<^I;bCOvdmr`6kAG z<>C~>7r4!Y%=GQWG_%%=dczkM#t-_;k!sfe)p=7m>#IFf3nVEC7JCk}Dza$!pwns~ z#qq;S5N3THf#7ZYEpNn%iJN9sLSupY0ggqWA(k% zjia%FeC!~Wx4e|h!OA$ZCB6ppv8y}m3vVp%TQBz~lE)?EQ~p|fPHsuJ+-0;h$jJ~%IRjEcg)1f%;ue_0Z*q0Y)%h+COm!v^0U3aoc{Ccm~0_+ z6859O6d_=L%DtX75JI6eM=$a?1VGhiOQ%0*aMu=EZQW^UxucMmO|PeNon1TiS6c&) zoPSO)$?b*_w3ef~0e>kdqAPtNKy9z8llf~*?NC;bI5Z@WZS_*{dl!PQQitDn+%mua zMBcvkysQ@Z(hA1Z1qMbJ*SrXc{}t>>EKa)Zpcdwa)Cc7zAU>(}OqP}@?3;{D>{K>-7RxNg6__uq+L-`6osEo|{UE#K|m0o2s6OupIdno`|Kk~_7ni(9CG zP~$Pjo-&8t^Okq1+*r|ypJvmCWDXnhK#ikwg@V~6hB(~w^EZP08p{bP6oWZkOMCof zg?RZ)E%ruLND_|Vm34#G=$B>Gz-+23s3MBYOQMGs*V~tyg3_ky$uTWE1DXm7#u#IE zZR}_zD9BKj+g;!gJ-GYvqe$4}m@m!Wgl*)*bEg1|wb7+C;m-9!2u!9%mjN5yWisAi z(bR_Hf#!3>$<=vJHa;)e4PfYM`JqB@9R3GK@Euv%yYORW-&~N*#JjJ1L3*IL-wS(z zK4ru`r*20k^I{lQ8SU9MA8X0!G3I?$Vk?4rv-KaH3jI|85)w@{oS-vAyz!LHV9oV@zy!vzOTQsW5w8-Qi z#zE}c0Q-tLLmb3o(?fHM)%;Qdc0olS!g4RAa_cfbzBuIlbI^`vB-U|1o(#T>+36f( z?C5eq7j|r0cmEavLkPe(%PUa+HvMNfK|!7XXb%zSMPw+ro8@z>(&z&TkChOtq$8!M zG4+_!;L2;$B5MQN4^FY#Z?VLpvHG6HBxi1SO#@v;PxcD!wc69ncSKW4L#b}o`zERm zoO6Z8<3tJ4St8N0I=sD|>VSRNqMznk6>?8Kr>84{gXe__iv$-)5S4wK!&fbg(TH(Vi@^H{) z@PzsvB9pDq>ZCDlhb*ZEh6`x1&KGS4%{DVEE-85_8uN9h)c1N)d*z8YF_muorGrwY zxdCrPMF8}dYv7F~QF?m|`k5B``Icj1UW48vo*ew2@Xt?3Qz)+boY6>|dV4&M zq*UeG5@FO~`;wOA76eQZjem)dvO3=uP8_Xy_e^gg9VmmopUzSw2`dPkWwPEKyN%2e z$ve(CMC4iD=_wTtP+Ih)5}mWWGNLu9krivM@ld12jn);vM$}&*XfkV(G#=0LaQ55n zNr>892`Wq1mxeov=smx>yF+fhzLrm(071%Up&G`S7*Lvri*yTMPM6g>+=q7I9Kt4t zhBvmBoVT~}7rtkKz*(tZZ2?l|X%amdu*tFYT1>poaRAU*7dsD10}f<@?%?m_uEz^s zR!|(soC&Sq^~X*v9`3sZc(&G#>~KM;9O5#}fSljW41~m#5KFD|n+N+ZmmTxqVx|yn z*8r4{1iogh$p*_lIO%tP&PxmB;o522*C^jHDo{0C`r2^wo{RR@MyInNm%8Yd!IU=U z{Qqat5}F77>+_t1F^1c+m+m||#`OyqR+G4#f`MZQo51bDBiW2Fg+b$?<1np>KWkN( zN2Ypi76Nkt78pxR848cdxAX+1#=q6sc_4)Yv%jjhJdUL|WJGd@y0b|7iA!qvn=LOS z#YW}eW(HC1zCB3Chd+1|QeC%a9ze~aYNyowQ2!-%6+G22FUy3uUPXT5=OA1~Xgm=T z^^En4G)jafQf8m)LW?!_Qn@9^>!7{UV#S)%e3j;c)e`r|5__gwTjEQxR$;M;{@~Vq z?&@Hx!{us8Ti%4Q^oB`5@K#Uma(abtLZe6?B98PVX|Ja#J4NdTc8+>$s@b{SCbc z`aH3#XYs5$admc>eB#>c(f+Lqc^rJ8`SmGM4Xf_GXxFyW@-=YZQ6N<+JPIQkZ8s2f z`#H~`qfgMgFAS~fVMKbkJ;F^Th7#h(G&~jtD9%ZB<&i2Zrn;Vgb5+(jI#WKt9A1Fd z{Y?l?$*qv(SbMRCL=cF>K}XG$!dNCXX>QjcBuHc9u`=D^kMUTEO5 zT$^XMky`LlFILa7j4V6-0SJrIBuytZ7iu# z?SDgncBSWKX+@Tl&OScT*5IK1*9+(MIO8jSJwe5kQajWS zEE9YN<>K#b_$`4kg*En4j?*lmpC?ume{$aQCK^lz6zgJxkSd=PM!u#(0}c%en}vW$ zf@PWC@7?1D&tA3ecSdY+je#2vlS>kiiO2ML9A^N<)Ypo-v9>S)HMP9<{tZVOXHq zs$SEQ_}F`f|2EANV9J(GXSgd5)vS+d_bB`_Nx9Wo^5)+k_HS}P8TpD5#79<6SjfP2 zc(MY&6kU3w#a^S*3YxMx)~p4WFORs9VqRk)hPewfBI&ucQ;jI zdGT_eZOJId4jMM^VZ++Y0I+zYXQwOf{+X*TVf{{@E2`toK_c&q)F@x_gC~pj-UWRN_{w($(N5dQA2bS#L5(J=p>wheYOM?Z&Ch}eT$uP2tgYiLm`Rbe5?3EjXj z8&K@!={cj7$Ev<7e^()95Awc*?~%Wi18j}e;XuLk-&H6G$xq@`=FvczIYf4K`ArH| z&d-g-n||!Iq?B48`+B(Db&kjEJyp9p{Ja@D5AiJE{(LRGfO1O3kx47`YSR4MN}IPl zHwxry+yr`Eg@;b4SviA~LSfMR0y4o&M-UdB^m*rh|Hclc?F4ff;_s(}w99`pE!js6(XY{JeWe+87(Wt#e@bsp1!_{+xRhYg))GwI8-x z@28)AiEC{B(C$|9`AYZDeUmmB2JbfYmntzIsMy0FJP!I0@;k~~vEo1Vmv=Q&0=rzks#-AqhFliq%(B~Aa zG}vC~D~&ER0K5`AOc`0%X?pd(V?KVbqu#P~mAPxNSGEMx5>WG`cgP=z=KB~`GC>&o z_V)3tdCgd5@$ci;Kk5Tr+F2A7(z(>F4d*W8){-~8Gk8q(F2r|BhdP%DhoH4vzRc3D z*Il@(0&-nIZPgv?Jhgxq8}x-jzQC_tR16lmOUpC?4OTM86F4u&Vj@0 z_7%t^zE1NYH))ba?UlzJFq@wlT_3HxAo;&&8$A|S(ix+swSK4r#{~^#qT76{hncQu z;qaU(CX%Lnr3>yHt93CIS3D)?OY82>^)lNAF`1Gc~<9g;!<}&;7c7o6oPo zHr~?53kMdKQ~ua%r!iel(M2PSwaf}^NJsSOuB;5UY4x=KBi?J#z8i#?ECcrBjT8LF zPZdTlLYvHbY*BE-NAG6o4eRzU0-Lv>(nQt25SpMh5OXEBLP*e$u^l`TV+JX|s=dpG z-jMa9bP9S<2#Ju0aC$hV-8L#Wf%Q$aIN{VbSopT>h4-3vE?hi5C2ZISXZ9aEz(j{2 zyb->pF{V5I7@ZzeSp>kRHMshYN=`LXxj}7U8q@x+-*>ipic@;N2@t#-TsBT z*P_q1yC15w(yDEZqW(@II|y?E8*r^Ywb3^Oqp!$`5Fhem$hFUjJZkMAI)%^%MTg{r z)-QwvKHvSw&GwiEl1G=M?)JdO5(>Ga0O53UL|Ft;HBLK6CPi8<^TrZpI~TEV2fk>T za@DZ+-3?R5@0TyE8iA??4^X(7l7|c%oU3^mWFfCKBmcZ-S7KpeL8^WcsWPPHEhD_N zZ0SU{B@H=EpH~o{`fZavjKx?ufQs{fJe{JsM!#8BgPOz3axp zFwWz>9$mdD8kxlLCtFI_Q`$se)L@(&w?&b@5*UGHDl)uOSp8h9Wcg z`n~C0&~-oUS|Mq19#ygIBRSS|AUa{(`v%b58L7lA*S(fTD?nSvGGpTsFu)cW66+$T zjz<`lDkf?>$jJEH{DQ3yIw!*79z(dUE1v8KHiy1HxKp_Ru`C-5PYT3L`;rpr#lE-!vS#&@p zM09Y(AWZvDhH=WGjg36;JYWc};^hY=EJ%yAdOZzp-uSeo#YR`eDvJVXQy}hUq@712 zMEB_MZHGZA>o2rH>AX#$UfpNC*eRETD<0KHt9(PZZV)SiO{r3@3uCa&;YT#57LoXu zZu$bTnX z@h5qwEuv@CcXxNpoOj1-on$Jf7sn%z0E8I+^|fA-*mNr0pR0voFYPsG-z_}hmQgay z_hJ5t6+PT3_oU}ZC~M`hBqh&Xv%2~ObQ-hYxI!9B!n5{U)t+nb?T?6uF+&#jr+5nW zn3I=axAgA5MsG~%f&9$XxAYNSOEn9pe~rPTZ( zEg3_VGOc_vF40k$CVBD6DYdmKc^=2Psk)cjvZY}HI>ul#X6RQbH2ykRTEnEriY|jI zVI|1;kH57JCx2X~4$cn7ag2Z060k@JFgKsx&rle1EbhB6+sv2v^o@JGS1(mMvg6?& zxVGAl;OEV|PXSl-X} zHpZ!mX6tPjL#>CQ!ssVZS4;`kgZa^EiW_^BxH8prd6n6Jy@`NNR}k~1wwDruN(Us< zwWes#mOo~Ihi&v;-FxCz+qZhhn|}Zi9P&tonC8Nw$j$N2vX(`xzCOekdH$+FQF^J1 z23oZjCT<>X^pV`rlooUUj1DB-*~GwGj7=0Kouclq?_UMyph})_kS}RVIsYQP?(~^* zzE~9VytAt?(QeRl`c7pl*1Jrh2QRifMwc}d#@dr4LGYTTV{vc@6P~tmpdQ{R1w{kQ z+L;he%|iAscgfN*M?r|j)*odobupDx{dNu3ZGp)MO3kVyQE;86PIIJOe33R{DN(}b z5gf&YxIxF2h@L5^u%w6E=eB4ZCq#K~wu1!9)oY*ef~`ucy~#!TZ_8z}cBN_>cbxns zGOuMB-C)voGZ=p(1=R{S8xfcyUDE8oBj34F^` z37bxDR0Ja%tm87Qw}R7nC8T^x`J1$6bd;sThA4m*uf95uk>4Ar{B4I7u&aJ`-_3_9 zxDisOYTL0e;mZ2zQW^gBulzySF*}L;axod+2y8m@J#o~TH9wwT)+5c%!_I%BN%}o0Iyyd3XeiJJTfuMG#5b?V>rqCKk z{w2sHxF3cE!;R|bF%s|D7YAc64j-%!GHLq>ll#u?aoecolbG{lT}9|(H$ssDR~JSJ z;`gL%AR}@c8LswQFPy6AscF7W!CUU7^ChQrGIM;XfEMS({P(bj_#%7Jbt`VOGS%j} z6Z#5y-tBYB9!&Wj-)1dBM$7t#Q3z)$)H^f?iyCr~9ry+O%?yQ4kx?20P~@5#D6>5z z1zole(^K?pcyhEqi_-0>SdQ!2bi-tjbh?5@9$AW?AG{vSOBV+`@sqobc>tMp%JTiq z(Jj+F5=NJFhl;=$Il860yFo>o0dpWF z5~Bqql@z2?x&$PpyX$+u{r&G}z_A?%54P)b#d*HYR17$VeU#8$Cx@ZjuTwmMx5T)Z z3iddRQ+3OI56192IE7{^;fVse$pY$9i<^P*j`KhJXF4vwTXIiW(oIbUw%~3vP@YTt zhmq2vzG{AroC|%q-DGs9e^asJ4L*_fmQEq+&zEP$dEG!U)B#!wQxx zy2AKFO^|Vpk1=1>ux=l-t&3{|1p#C*LdMY``Ey>A7g9w>(N%b_Q#j`&6J zpqPBlZO3D}Pgg(xn47*@*W7L`5sgU6~ZYtuO?hRh;~R!Qm6V;h5K{QL!&hV4{Z#JBb& zcHfVil#NbTz5(;96frzCRFFr0KNmk#$!E$qz!`sB$vRh11LrA4s$4xOkE5VTWZ2<< z7>!cZ;+BR#%hcHh|6UBp8T}rY5!8JSDmPV=BHgYp#4ga7YMnytXjm!^@#AqK0%bS*4fPOf*xg zeOTdPOFH}>5DjL9Ikj!I5MIYG{pi(;bdT*x8Q9+-oEgtSp=2>V3lnwQ?juirGs-hr zqq>xN%l}5Mj}~DWvcI}-&L-H$KA+%gD||LwRFIaYE@8Znt;wM^{sNi1-kHfmb3(SO z_ER%Ma3rF54E8Y{1kuqpxLOttc8Y%VlxTg(YZ;n5pK9p)?IwesE$Q@X-}8Nm>&j^7 z9jf2uo`t_p)Agyq6&tuX!R{Dt*%wcJs}pWj&ivLxY0Z{A#f6XgzPRn43JeXxqFq?srd(W8Y$;>xyJ*Ph9r%nC9yJj6q6yT zYJbxdjP?T`wTkj}NiK-uE-XtT$X8@pGc>FAU$!6Jl*vqO-PP^Jb^kh{p|(;kIoA$a zOj*)tWqz|0dy*n;A3P21;&Wj z$wegxY?0W3Rk{Ot(QpJJs3Mng1s#|n)Wy7U!#VN}Aj(fwzUn>cIqe70T5M>bKQ#yf zAS7M;iNTH+H3+fBQiF8jpYTbHQ@Zv(Q zD4IR;^jf7T!+hdu?e~I4gm_wmL#P+0UatK8b;3S3YO>i7M6DkkXMZoMeKn{%wfAV| z%69xfRV=SahmNv!E_b)Wttua@*a<8NLNYs1TGL~kx^Sw8!g6HI{&Ki*uTvp#DpsNi z`!~efO&eZDR#u@;0udHG^3x+XMgpYn#>G8PXL02Gj3u&L=mc-f{jnYC(1VqU^NQ{gYP> z8Mn5)-#0q5UuN;0Nz~C^9dDbM+{l;&)AMl&7+L%H1gaUd)K5&!MLGv|-0>L3!)SH& z2?ZWdgXqJMI9m;X?zYqM`iq5c+KzhR)giOt>7Ao{v763*@^au?u~% zW=XVNh?c!@ZcY+?mlo;@@>Yu1`?rP`RqLziLy08r79v?&oX)+^uj2paJrwL5%DXb= zy%Ik?S~~>~@oN8#Zc~}i{wvoXt1T+szBmV>mp)#mf?b1`tZPljLD{TOPqUY&twzpi zh`Bsx}?3-1) z)6gT5X{x9(HzCz%wFS|KW^W2P!C{npij3d`KHGnumj|K?ltkM=c6Cs*>;T@OcgZ_S8?Q)EU~JakP}YKdP55;D@^KXK)NbN4+GG5JJRr`$f>(Zl^n)Bvez-nW!glVmbuLrZ9Isw1 zv3;iydr~Qa zv$Sa{kLwjP=eD+V8m_rBKc047`YmpGFeg=S+w1p6?^U0GB*Og7@Eq-;D0XW2TKpRd zAPQ}EW*>xKeowbnvi)Wv?Ls{h0bKs$iboE(?(>MpNvLwBLBoA|)-({dORn2t0LSMX zb)K=eAuyWRXH~PBWLFG6jaW38FYc^ch#P2S$P#wYd#fSnUpqC?FQum1OeY(0Xb>x* zCsaP+K6(@sA3~v6d)k6`oNSV}eMMU_+lP9cbllW74YM#7vS3?Y=OL#Y z(Q9mzO@oJ1c`3(Nq5Z5jdA1{4eo`N2Wo-ApvEJw|9r38i_enG*$gRWu2pYwsa@}Y1=-Of*98e4(ZlSc zlpY=I!q(|)z52Ejy6Ptbh?Pq?=%gApjwJ#w=N9$8be=RB4t=fZJERu)dBXFn<7BU)tONB?j5sjYuVjY;G5vR+cBd|xFVb7PQ5K9;GA{w+}&H5 z`?=DBpl-5}U!3E1{K}`5YR2Zby?^>!*OEYL@c~jQRORb$&&~B+X%k+vqUE`flHogX z$jFVga_N`w-z(R2g{6IeujoW}X?WBRzkdj&cAu-&_PuE7GCf`PXL#AP&HOTZ>9}g; zf$`%F_san1t%L7(rKyOK(t$A>>p8AfpW4+a+l*F3OV&zT!52kH`9tnK92zqFv0ty= zXL;X0*{VI`&JvA+pCBsVqI1a~-=hgi6zj@R;xLCPQDG;H+&ent{S>X)vTts+Iq>{L z5kbpF2euNKoCUw!^W36>ij+10uq?3DDjf@1_Er!o+jaLap;tt$gt95bgc28|^U7b& zG@S?^yHq!J%x%@qxePnC5^>&5^c_F(Z`9*s7~huc^7_R4>b6oNVXzx-!F2N6SNLj> zEpOg$hVrav&xFzPD(m;y_DQ#OXjktYS7NAEYopo4E&mK3_?4sEy<*GP(zSf_N{a0e z-nzRP!g_jimOyw{4cquJcrYq9bn~(| zBHwprH*OsI-`@E1y(}JFGr2X*jy`QTTo{UF_asncRVDCH|=uD!lR!#HgblxHQ`7e(px)Mx}EyOUFFHi;jFrGG7ykEmOcMbjg~`LKZ(AZ^L&~x3WEJH~N!ZhlRww6c{z(D&vA$ zX^~G=QzR}jJ`2y~*ANH;i%(H(>2bD}E}o}JFRO!zg(X4Uq!U1cW@2<;%V|KK2a?Hn zfj2&!gT%oJ##0XmdZW5hX9-!etwy{{a@Z-tnfNuS_cYZ&TmLW8l91&Z{~dX*Kscm@ z0Wxa#`Cq6CB%HFIggx-#!8lAnOSvRUH~YWw>#hHl<+0Y~JPjUFd?WiGze)=Sph#kT zW?>T4xJ{ag7=SN-E>VA7tzE3Z^u=f(O|KH9qsYC2Pv3n@w<$Bg%N5k5DP*?zqUX)S zs)BXamGZ$F_#D$p&1gH*D?FdS=)2%~E6WYw1ie(CqrO*-paT0w1I=QC0N(MMe;nE| zVI1*f4)k2Uvsa6tq?RaF z=hCRCg}xI^<zGby~iWYv(QrOn1a zz8NA~8|?;bjP4JYt;poby{eC&%8tvX9v?GYKwDXzTx(h=**N%qm47$t*m7M5oXUT; zn%D%j_%2-p9}fhrqhmff2UN2OpG4Aq;?R(iwT|w-DXB62ukq%vU%zz5zbPdhr&!jk=YuG@4Y>IBcZ<&xr--^_u zJ7kE|yk*Alh|QWPwc(!t2~WrBzn4vFYFx2Y&caTb(xIAM5!3dixSHhaB31@ywmk4p(eJZkx>S1*K<`2RTjghFo_gF8E$O(qI_H3CknH zAtS9N>ic%KlEHS6isQICe6WS))Yr9LGtBhhEHN^-u85N;4b`F0Wkg5JSUlXs4Y!@Q zAcYa>ikGf%h?6#Kl|@^3-?$TT8dFvdmdgGl=T0tVEb%dYvopS&@Zx7w7JJN7 zzjVN!*M6<^Czgd#nMIBCyo%s~GeL3`nW&1}!+n}IiIvmWWZ@W5_aW5m>6>4dZE8|m zAQt*o9ebyZZa(%>OO2IeX)K5BmGyZ_^FugFF~-iTtfcWG%ak)kVT|BXo@?%ryt8ee zl54c2{Pt`dW~D_N@Bjv^&y6alrw(j!F93{`IZHHx!~Dv@8{Z%+`eR){z0hnkg@R?3 zUQg$u{_mxQGlcrdacgJVok{TT?6Lh_J=R#sBQx}oz5L+X6x|$fnAcZtw06~0DVFcM!o`tS(G@*Mo))Uc>1VG%a8G$lvmtw zFxFg^QG#(y40)RmV3n}Yaz6(N4ZfoOA`dcgLoi+8kqM0BOpJ**sW8O@P4^VAR{$mU zj)Ye79Pm4Aa!r`8%sdJ<# zl|kK-6+n@DpF-m$$s=(#;Q|`u`8#`*^A-I-jJ@2FlD%QJ1QzC}FuKEizgR&1O-JwU zk~vCCRMo03_a@^21aOvEREf6!qIt1FsdnWU*X(oUJhK!Blr%0#9&*Za7Aw8OSDEs0_ytN{Bj8u%kSiIK8h0WYEy8}FBX~qF@l^~eUK!C2 z5ZLBBc{R`uY@*+|)Os$s@AnI5nItegL8dG#x-Wwjrm8GZKF{5=4jSgm9z^B`vqhXt zIho`&kNBx%erQ!rSTiQ#O6{BT9lro>((Z0a(U}0_rbZU1laX4%+}vX6=vbs`pn`I; zj`w@dKyiLHYkYpWL{XBYvR{ttPqu1aw4vCPOWxxQ!XN8?6~3^BO;$K`qA=hEqdlei zJ31e1K87iQ23w9$IqsKXsW+pYX+iOmJ;tK9ocgX9Zt*!OP9Hd|)rQ_z>t8t1XJrM| ze?VLGriam-DmXCj$$mx;uNssvVq(eJuF>Q%JlE5mZf~XF$ato9FD5K^N7#y(1paa< ze3}x$OTRXgp7$Kqj5>O%3ZKmdnW*mUgwi#$j8pFSY=iDI@HPJ-kHUUIXal~ zWZ&HDo(el{7YKXwJO=y2J$4EW+Rp|G;&O?^57}4LRx6ocxR3k9-u#H>#@hU#`sN22 zCKh87o(A{l`&gJC9zxTpuBRnML_By)ag*)2(LhFGw6q7x=P1O0rv@#{7ISJnk zV-5Ov<~?_ey^d&FeoGJ1T$$;7$pNqOS>&@~zCT>@%R`@FYSv=~Ou6Cuw(9K5``+9R@p%g;aBA0m6Bz%ptS?l5pHFiU_g^^Q|#DA(Fpl13! zFbls>3@5u1QDqseX)b8UX&ws!$TdXDcYq5BF(fh=!24ieu_*@%h{LBa zYbBxgnk7_C6S3P#eh*1s*q@M;YmPFG+iT-7Nt!&U*c7)Vm=bl5gEuJEg@ zm6NK?0n1oWySV8Esuco|b7aM}v4Ee+$~Xv8g#&ym!J3f4j#T!o99e@Fsp*?$a_wam z9j@(F2mE|~REZ~`EG$|^Vs4SCq%k_+GC#K$S#n!{AUM-}*di#XCDn><05K}RuQum5 zEH@3Y_;%qv zYN22l4uXPa9JZLbiwVephLQv?SICZQ>YWcwH~=^lVm&l+k8ld~vMG8|LSJ^OBaY;h zBl}YGN~6juY>m430s~NIsqUzCDa`L}JynX(c^a?qO51|q41U3we<1-ppn26f6+bk7 z*n|ni)7-?M5wLEil8kdw*83zlVQ8L44osUb@V1*63-ZU-CQcE#1akJ0Ffm|d{VI3@ zDnKEp`?RNhe_g#mL(>9pCXzy&i0uzLOI4_9#g}yIFlbxC*^K8*7FK?=TjnOQNS#)g zc9*JU+uF9e-L!Xs5Zt~LbJZUgS}QJ+?)Grz>YX$C(ux1%?2mnV&OI8J#}SGsEsR*dh8F@A6|WUfFV~E9>7Q~M@*2*n=em+FHF*=_|QlGf!76=_99kY zvQrW!r#Feb5>#<64ARkXDe?*w_{}YV)98s zDIg{>Wb^l}qYjO!*N!h|w`Wd1QI0vcn&j1u_|cZ-w{lQYdD|ie*PUxOt`;e`#4gsI zT&rrt4eVdYmoxzlr!xp*yD^n!Q|dQ>mprEx4KztBs2&N8(PI|>@{ps34;~4_t|$fd z%8bjMMExt07@Rn_t5>;{Sd+I)K0bJN=X+0Wyd%OcZk!-dE(|GPVPbSR{fZ|VRYESE2``EQCFwmcny_=9$?D%bSSnKXN;7QVky`&lM@@0iN0O1E(Vv=hOg+{ zVECr(^Y@QQ1T_RSE{{5TVf#vHUm)qQl@4X4q;xqZ7aR*|AKZTV_T*=BOcuGOGVcvv z;=>Qhqd>fli18~R_4~hXdDEoOx&uo^RNPJ{SO8^*RW!eq1Tm3m82mKCSSS%1a)%TG zYgp6?P?CTAi}fWa9U#CDW-(zO1+^o`bxJg8Z2o`XI8Ro*3NEi$0~5afTTacA#Hcnv z4o3Hk2?uU|v*ZL}#F+q0N%5SS3dL>orUJ)NY>WTXAjl;=OiRz~eafxXshu?W_itvv zRNLw!+hd zwK{LY9lh!hFOa`inn=J-E$B`arbM9NOmn&;jWxkLV?m*UHCCC&Nu8oy4$k+R>9sA1 zjIYT`suOSqO=R$}86W&hnF%jPfk1YuG5;J@t?#(lY(&1_@U+7?+-R$6b((@duIdme zsElKb7Y)igVDpfTyiPa4h}pO}FK))$?H+@msK3P-(fh z6H*w$l}6iiq?$78&}SHs?kuv+Al^zhy8OYyxpR8+5VMCL9}$|{BR2Lqj*e$Tx;^o& zu0W53tdV>Ok!@#KLbe=1cn)4x#D%`_K84Ji^myQG*VwFn+@l#HNA`f)+LH6%C82!u z-z6d7i_E`9d2kJ|9PhC-GmqFEXP>nwxXK_WzAt+$z6#9)ESSVl&73<##tacO{R`?y zSp1|V@5)r&;mBV+dG3D_9j>2E`^0N$hH1qhVs^VmX)V#9h~i%j!NUCjx}`*dT&#x; z>|Ho+Mz?R-i?^asJk|DAD6xBM#3Uq|71?mH4Rr#ShBmn*OxPtsvU|bkz_X0l6KoLG zK-N871=~x+`goPr%XGrn3;tw-zLr(Oir%; zJ$(qWxYM8<*2-w(XVd;hz__9}?shTjK9rOUbaoWijd1An02~tw>XH%F6RBR!L;S%j zlmhjI6e}UzP*vnDlqph2OoRu*=b>Pa$B6@!5KsvptQfNasKA$};n6mpV|kjCe;D2; zsZg0_%`!4-fFYuzqai@sx+pOp>^)|aH(dZHTqem66L!u%4r@W}kUsPS3up&6WkFot zJ7Z9d+CRnx*S&>y7&3x;ru-fgXea)0)v(k*=QsSU*5m_-VpEFIi+csi)IvZ9HY@w9 z@a972>1L94aW$#RLwfNw<_9|T(IN6n|Ou4ISxpkRF8I)|* zMd>iwBQY#VZC6f^4uT}mDJ5FtCZwvzo?naf+JfS=6lGK@E0i@|JA3(y@o@H0Q*72%v9{pY z?vmbAvS7Lbu=PU9`Pvg>tP=xOaZlRYtrR{bQB~&RG4B06VZ7=}#S%MZWd89uk^dfD zB6l8Qa;q!uiJzJOb24OF8((sr+Pb}?DBG)yjQh&JeSphO17K8d#AtSLzlhkknXsMEm2F+Kw{diPk8X%rwFoE-Px{U0SFSk%r;=7f>vyu4 zv&S!-et)awS{;6g7@V?=SPfR>W5`oYD;VhaF6`Oc?k^u^MuNHNG|nf-zW3vws-Zts zn2ZK;4@hu7JRox?sQ6WIyBZ@BgvlF|yZ1`wIZI2##nURtG{^mDk*S^{<{+`=j?f43 z5)az27*8PcBZ~$hP?;_d_-0R)5(k(`?zabpV6&3u5w(FhkYxF|B*oEoXtfKYvSjdt z9DEVOo;OpjqapB~CrMi_m~G~N5hw{IafEXAziW4XuPz_KI9L=nsve!38rei}MU`qV zl*$m~`)@fr=iaak>HC;IuY9{-8R7`H>N7^16y1w{~;6ew2z_RTH1z@uPqA`x+WK z9;6qAWQ7`!{zhaR1(mkUGvoyOPTF^t)k)YxQsk4NPKp_IGr<&@p3sPox8j&FQN1|f z5K-9nZ=0^l)K>;nsfS~afp?LgnWU{K(h0LD?KLu@S7zfm-^hUcB&dmdX>nsm39H7&)7E*s3$krSdumTqeL9$i!`M)An z&BE78_hZz6^1qS)FkbfO42RB$k^@-G^Fr2dd;ei%Bf!lS;UDCZgT7+j{msVvB^26g zYg=_F5vi5zxTGV2INsiC&09T*0lmgJ-%dtk&yaKQ4A}neKfDu_VHgo|Y5iI}Sm9J1 zB%^K>nwR+{#l?tE^d@~_h-<||T`_akX~r3KWOSVN?yfqFPUx*{~XRDS=1V;k7Tl!v_QOALvC?`r$K zwg);>6x$Z+wo9Peq&=~!QIeoLkM;R3l6fEtl4p=r*WrpVs+&d>gg!acykSc>=H2sK zuub|8!zs9M?1HZD>nTATIu%mP{@kVV;CxP`Whxe0@GUNOr_t9fK_|!Ni~0Qn0B1G1 zPLC@lF35DzbDMrq1_Dd**#C_{;Qv`{E6>r+e~#j0dZ_0C?t{Wu#X35sf-}fV^b3kG zuHX+%%?9vu3J_y$Q-xWq@lSyY9huYoj8;&YV8mCO|MAQ&LKBzw$sJyZ0i3qVCYL|# ziSi4M(YuwzT&p%Lxuhtu@^WJTORUG|EHDD3WC< z+D4{tdeRYbbxvg%aR)69`1z)+ryIC`mAjH98pwch9q-p&WpumD4kZW*@;cSym6Z^Y z&W+jE>-8MDn}~G!cl)>OadVd9c=O|H{|H}Fd-F&nfS4aIlChIv5&e$P#J21?t^Jmq z{Ns*B0vhtTsw1K5^?_uyCltTc=q_u=8moV+wf%^H2FTsQ4^v*2^>Q&Dj!lYvNpSq7re{rws@x+0zuk{-MD#?9rj zqzLG!09mm?S01IqjvCcMBc1JpH7CkY%0$i@1<2TkfW$O}E?kvkMiUjzbWtYYpAx6$dkEJhePJ zjdT-$T(Lg*SFzi_RlWD8bJDPlwR*~*vDpBcBh|dN)up+F<)-*=@04?`-UX15MOl6D zb6Zu)!xDSke8O32<`qT4okP5#l=PTW=bJ`Cds`bmdw83O0SoNsNpy3qW_U#Nw84pN zekEj+L8JHG=8w2nVt9tUIUk;1GCsxxMdN0#vI;tuh9sF5e&hB0g2OeMnpEw*{l8>v zituRHBod|+R?-=pAN_E{VvoY~UNdIOV9Qifp1NIX0Xxq^&}=TvWvd38#7oJTG%9F+ zVwQ2;%}8piM*)RO?bVRu#+fM*fP7o7x|<0?x7M>Y`-2}`sGQ!GXAppuU|~b6=Abmy z40xN)t)NGF!=O4FY-?q1+u!@d+{Vr`|8A;(d^K}+%FLA%X{P)$gVW!V+T^3L#~|9> zl&8=aSsKagWHGeq9jR|yZTWdbwRix|vE+kNz5( zFc>-DAM$F>NpWLQ?{xOio_Ayd#)*O;M1G$Ji=?aCJpI`JdJxn{t2a<50@X@{n`4y` zN#tlMB2Oa>{nI>slw-0l486;Wd}a3SLmeJu@C&vuhFlVLP11+dP0V=ts#~g*O&`py z@hIr#x4N;?vq*l}h5Z=;yX1T|Q>Vw;TY-o79kk2}VMelDU&9Z~cl z3C{tTG}tA41j%`2-Um>~EHU~%q8@?F^nwuud9Q1m0 zjCc@3pz;FlUO)$@>Cx@U3)0iNj=2mBZ2h?#QkoDT2sxnf##u!jDDa``gTC8Nx~nTT zwGgS_4|!;hxV>aYJ`5LovR0~pg!Zo~x$4<7k-dxa-Sv}) zW(ok**DXMo%ob2Oz52;?Y@)4o!rk=nZN`ler(OH2s?s6o`YxU7T?TAYAw%; zzVQCSJQJBzQNAm*pTWaJMVZF!Kt06}y3=OME<(c`U(N*mrK(P@ihNEA&ZM$x-RH_J zMggR(-vz>zQw%y@nYGa8QE7g*NfaW>`p_awL$0&fxbr3)i87zV)wO=pb_T9K}xP@~po*&<6ujw3iY zu~5ARQ;zHzmp3oNPuW_U9+1#*s$fqQp_p}XK%q+f49u)P3Bm0s9%B1AeBu%~7Ey4s z&!ZQKUH^)+=@*}RMb@AMv^ArTpLpGv3j(-Zyw^wj8TgN7Sk?vwQ;fFW*pB&`8qcas z{WWtvO+`4?eeM6kYnhI(=R!nFWOV6`6h00e^RVfq_BR!k@XB7^7OOw<%9@XtX#^zn zpL}h9Rf$F~I%!1*M*|uIf<=Xa?*Qy)hC*lez5%2TkedC?R_smqs(x|jdNEj6Veu*C z)7C8|TTp1{lI)uyU8SYQoc@aJ!p66u==G_Q$h76-{L%vl3hj%`t4l*?aFP$U6=`-d zA4U%*&zRInezlcapR$F8K0&G-{u%F`%+YJ>PYV>|P4Rtd4!t?53Gci%R8lBuiQ;%Q z(?Ivp_$6zA$SeaxTDAb-wU7Tj5+3yp2w@0sl^M(12oY?DF`))|>HiM<%lOQBq0X~S zPG&b*=M;^Qg-8xaa$cM|TZmC@usTtEA??SHRwZTmYEsvYf(GOy`eZRp4Np}Yduc;_ z_2s^Ihpp!!3Z(l2%kC#XzT_Qwt+kOPl%?uaj?GKmFxXgol|^CdVc%Ce^Q2Ug*7(}q zlPhQSLMo`?cQ?^m5Unf++Q>m)d)T$(_?Bz=Zg|r@t0v)z7CM{Nmf8@clu`0Fc6a*I zi`+xTqWJTXaB4lzWjd{xP{@F~moWD}Is zYsvnx0t@#8#Q+@BW+f!Z$=g58gk){j79Y$JwKJQY#Bf6^vXlr#!sqs%I}mTrRkmig|YWdPi*5 zYm!}>9)ZX3q_@vSkjbU1(uNR_7YaVTRG#po4;9TSsLoqB3`zaRRLq0jxX2^ZjSzgP zJ3ipyOo=#=7;01iH|^D4qF-h0cWjEGqJdkd7cF_Q1~b`gvAw9!7aQJZM?Nj(>#b&; z6?r3mH>lgv4{DOD&cViG?aOB>3$iT#VOW*=P(_|Td3j4oe&VOTe8g%t#yj{{DyuL6 zJWalp?M&JFai@*Fi)sA)e{vc%v!bQBk*Zb2hz8fwi{5{_G?(hFZ30b5H#{S_~6e2jt zCyZBY|L1Z+JwLc`^wzgawJza53_c#~zGMw4>2g=SId^-Z2^-oUeW1((4rs4@liMmi zXr^JMJL!9B4X*)~4i;e(a78Aet191o9fiIkxBEy1Na!s+SQtu!%_OE9J6P#F?eI+! z2bQ^S98oro_Fh-mB$o?>^5IzFkg5}YzUhAGYoHYFgnG?9Stiey(EHWEq}Fl#FmyfRd6FAS_K>TLd0wKgoA+@fBbQ4?cdyVHY&We6wN<=}r^w!MTnxOtc< z)-({D-&R{%hKGt|rQc;FgB$e4&3_n&ozq>O4#Ou+E#s|YL%MzEAz~Ss=~w*qh+b(< zdNqq$nv8D3<%IxNLhW&`9T$W7PHTip&3YP_)72AqiiY*26M)mbBB!=>#Mk!w)ZvciCc^*yyJZDoP+pMsNnd6;{ruz(7ZOg3B)clJ4M}K9twqb7&Ym@<+7?2y!6n!BTKN zz~~_Ci<|nxA@Q22SSmOg#dt4LGK}LH{!3hm0D_0=@y{si5}kpgL;MV2 zk#RXp@4C$7f_xW4Mzb&ry9+KJ1rTuXTPtUXM~RIz%5#2<0`z1DVUlV=Lfz`_-Xb+l ze#syih2O!SY*Ux)hxsiv*~0p@MAkNUeEG6#5nSr|D;YLjV{9F(y|=M(^#tSGv*Ea-LXnh^0fYV6sn(; z<99mL>>c`FZ*LvlAo5n`Zutj+WJKKZqHpW8A#ZHynmTZ5$UpSC_jZ}bRrZsANK|iy zzuH7vv3*ni^T#2IQy%W7U%!A4o|}DMZTaX~g`hKUeTnKbpNT+pe*Uo1yx%^9Os;>Z zs%ojrAFrltW>aa$=>sXk%kwM=ne62z?KC(5CKO3N{dS4q>zfO>CEX6GP~)-wI@-&W z^qluzM&0Dph<*O31$TcUu|OXVAbjkg(IdEOud?Mt;8ib@T#gjJ2T*9B^_;o(-dSSl z``KFcXK-mjmg6^jy}d8L39n93xtm)4K<`B8axfUhgxy{*^G)fu3O3GO_QgWSq9p{gjgj@0@pFQ;0~qic&AUuS}6}cFMw$DQ+^VS9RMxU5lahwLK&J%)RwHP&-Y zc>-nzm1ym%q8I(&veeXIy`H9p@hjV%<;?8Mmn!AN-mky7gL6WJ8L7l;cMe~%yXcY!+8LNevoKbM|!lIJ8Q1k#6U01 zYnf0n!z)bq!JP8I#~05Tp+x&Jc)4ae{Y3#Jg2BDi`BcS3*57a)&r%5G8(f((L(ax| zAR0^x|5FDRNd6ovg|ocXl>UK^l_yIA`A}ol^6+UPq|7_&{BQvGfp7Lz?!ZB8@Lef3 zzARmD{sPN?<9DczyUEblj{*-h_b`>J2H_hH_~_YwQGoV;YEwi^MtFjKs5U`Q_g>ct zwUm+HpQXp?72aEZ?KtzZ^-;#q*PO`<+RW7@PGfPp7CtU#$G)SGYDBV+TMO)BU^GMv z%FFXyD41jSRW`y zrI_Z8kytC`aT)XeW8>QV34lSyrXyv(s5nkj>+KwJkpj*tYkI#GYwE^rVRDB6LI zZ#%E=>~8{PK$A`XO{hBl8q^${VPgN&p8u(F$gujIY$3p{cQN1Uo_}lA>E1cazF3#< zzk&xQm;?>3M1~eEx5WGS9y-;vs+6vfW~)oO8g6*pvZi>&KPtUw>f;4C!Sa7Z(Y_<` zyX2uNVeycM5-Jl{#JW1nEz~#)^>y1YSmgwRp>22Rjyu zYsbLaYgQWMtFvp{-=FX(dJ~O&g*76OgYkdzYz2Wl5we^Em9c2tAPjAXuB0-oa1?wA z?_01wQ<;IF98DBWpOAF>iZxG}?Kg>l#DC8OJQl7-0&{5feE0CPM2H3MY3ZQd`opdK)sc|if|T|6!Ly0ZR*J^+ zc!i2iYn$R$Wpyt{fO#;THQi_HyBd-)nCbB6!&;3^HgblnJ~4QkkDU>jcE@2pJ`5Tbz|SF>ou8LpAif_*^X_aHu!V-K)iZIX=z zVedvL1^f!++RZTMZk@m_+g3}xDG$rniC#_=Jg;xgX===|Y|?`JKGOrB+lAbJgQrA- z^9~B?U^rWXi}Cm5no-e$bHhLDOPT3QZI{EO#d4183REev}hUjc?}}-EE!+3({pRi2I|*NmHzM7Y~3chw>3;6;oz3Suj5tvomjb)hiOneTA(1 z9|AGiuXE*hSAVkluX(C9LO9 z-We|cqX@pqA9k{VqSFj0V)EQjb0o>x&dfBv>4M%{t%KgN&BCEHNFGIkj2blGrzw=d z#iVjyO7RWgSB`d_(;!Iuj@?IP#Nx|P?`GfgX^41vn zSgcTt{j(^%V!diheC$DPD~LUynJ9mwHwpV90F ziix4}se7@lJezdGad(13AaZo9---7eKq5uyvY|`C(sPt{do`vH*;v?nGDQMDxw4_^ z761|Qt{#!#9e<~b_dTYfG>mXYC48L; z3$r@y?BOSom2D-yHWAu^#6lf9oKD|f32i+#2S_?b_HJRSw+M-I;APfA zKdyo6JMsND7*UY>;3vofEXFX%&xuu72D2*X%EL!4^sp~pH{}od(Ws++$(2vW$Lid* zuNqKpGI?!BGFs%96~AwTR~B}e6Vk+upPfsmc?w*r7H~=vV$uX*(dG43y;3lEhtD3l z8uJVqPrmBLTz7R%5sIJ?QOu9W8K^QiwZ;IwOIgcz>yZhSlkWIBPL&7ULCc3+~ zS14f$(N@nps&vH`aZt>`_DR1X%kDsGSg;AvaFt!W+cL6fWxv{of|Tn>&MfUW&#t$O zMMj!RyHoQQ{EVJ~W+qbP3MvU8t7i2HS%u2;#Mxa^NHsDg&%%-s0{TidsiB2MS7c2u zi-B1{Py<*9^09D`blcHZ=&oNI7SP;9v!W03l0vB}aviPTc0ddyH&*H_Di#`Y+s_Jo zV%C5u!$U-W|s!eW-fcI#K}wqcbe4fUI~L;fn=4#)kljV+pe0b>_Ufdyvpvp(E znS#+Z-ZIjjgq+eHS))*-mF2HxCzP#H(cvy1`m0BFS~y#LjsSDzaV>&-s9t$XBC~$7 zz3)24VsH z%;T$`-@9y?R%+_(<6w4m|b6tu#I zOE0I)ptlx(*ZL*@xIzEB9Je^jTfz3T!q{v{t%WwUbS&NfDSYJ!aj|HnNpZ36%iU*6 zP0?;H;k#$qvo`iwW9MPh^sn;a;l1c@VsyHmCMDO|eyQKO%(lHdO;&=s~aRsK>WEPq{u;0>G;P%4?xdV*%vt)v5$m*s% zaKxdqOST*lM9os)OzuBmkp2#3HtX>47r}HyNu~Sn2s8(#@GF!`JKu=^c?d8()!```tohlF^R~G z;qGWUC|io#4jO4y0!J+EZMNryM>Z~QY=x;2rIOdG@NxCfqj$8qX5fbQh*TyJANf4ll3qq|dH(?qn(X}Ys=AcDdD4imZPZ7 z2_q7eAE8>oAegXW$v^&0!_mGBInz~ssnLd)PL_7@e4-F6M42QwJ7!9R-69{mmS$$nIfR1<;Sx@mY4p4HOHZ};k^O6 zBIp(gDEMz<`L(mO(=HwM36M7C!xiMHE57lsbrOW}%F0jRwEs=dYNaywrF+L#G*hTL zCnL3fqCen|McRcORO|_iHaJOHKrMG0d&`rFE0a^1p^GG-_;Et5F51#NIm9}Hh7I%b z7n(UPZMVp(_M!kMS!Ch7VAd&_dS~!Y>9F^rt9DXo_>`VnCQR<}pY$m9Ihema3)+*- zCC1%f_KS`u9UT^vsNcNwy$95>BLuQ{r(cjXOL=u+se+v@EtGS(k~Hw>6vr!MzEeRi z$|BdXgJ#mAJct*T{N;+Qm9j}jd~`w0r~}n(<+|=fAx{1H$AB2RQ;%D}&llOhH@fSt zQ)fm?Ks(>yeFpJ(oS!!aW7LV(~BsAFA9qUr8Yx{Pi8PP z8kc$7BqrkgIjenn5d*{b^aT@6AV2}uKMJYdw*TF{`=ca^Ps#O6OOrmRE$Kh|QbxMp zDv8gykBvOuGD&M62+$V|gj$jK^MYHn3)k;HuR6>xeTOMk+a6F#Sqd!}JzqO+HTIed zsz1Rl4Fmc)1%=nS$ytD?$L|d|Z2qyGugha`RQXToV%Gg)m60NU(!wEr&9Jq*(iH<> z*~RikMAutnY(J zy+%BmS9kOjia+{j{qe>gC{Zw*r>OMIdOZ3Ht*F3jkxa+thb={#XFuoEXg*Oj`J7Yz zTVa{kNutb3d*Am0S4gv_y}mljAI zrYht-=ciA_y(-`2NcjwJntC2WeW9-ccxu5S56K$Y|9WN;+8Oq$;;Dtvrmr`?QOhLh zX0p)0SGg-65(VbLGhOsyxtI=e2xy6eRC9EDZ11WSKZFj?YxCTq!lT@7wS6cb@O6WX z_C9zu%Js^7noya4^H!euE47_2T|??#O)B(FL@GQ?jDTQXvdr^I_n_fYFnj3_JmD>_ z?@L-rUfAuVulQ?Y?(xio43R&%!+t>TE?61SH0<$D?$_+%JIT~HkL4~%8-wi|Yd8pE z-aggfgYuAnQx*2VPgg4GO{IQ&5;M&x|A6zGjNnB^7@8$wMz6tk@zxXdat z|5}FZ2CrOjL9JzK1e;f3SE2b+B!9n&xy;X^cseBjGRxcAHLX~uj zE3W6gB2p~+Wx}w#HOTnlEUPp4oT-$N-~_!-5Xc~19Qb(;P1Y(&AUi(qPeQx%%>)7( zbZI{>Rhg;0yn7Ew^B*{Rv3M##^Bz9O4eNe$zYB&i9AVncSPO?fE|(7FwJ-X@Q$I(( zI=@u2%iykjcH#r$C@J#>06yVE8=7ChUnKy9lGV{3yy<2ipE8Ye7me#FP{eff=Ro{A znPJ{l{!Vl4Be!2rhmbaH4U_Z0S%GEvZoCB|iXVzUpwIFdJRIF)U z9PT$@#{CIP2{%&WB*XIr`PoCYs&Ecq@?rTiM-W*vmU$>;iQqs#o?8@BQ4mu)Hff94ZcARv40WT`83gqKPJ0pmXFS@ z-c|l~c#<$BzgSBNWFi+-*$riCEp{EVE|rdZmF2sXTVVSKa0ahb152pefk6YXP-Wvc zoGQQqu;T0}UttCLbM4DjXq}S*e8AG|+$dtqNv|hkGI}f5b7SARdUu#R_5hQN449Vj z7NqB6t?XK$l-k|wd=dIM()+V$;9#inXM6wpD=NmXJdHVQF2((N;gpV9j|gey!iZ8R zK!XZ0ObUK)9lefU~ErIQoIw->QD6Rh`lS$15G(9N|aBI8*4ap6?kE zJDg2QH+yC!+S?bCtLOOE-mOnLBpNVELeU8&+{I4QKFDY``4#O037J!?&11=1KWz48 zhM2XurM<#TNaCS*&`_z5fG+rjhZb5RE|=c2aVYJVxlOzch}WP-?Zj6BV=h_}$yaY^ z{L;wMhy4Ud*DDMoEc!om`hAY(HRm4NRVmAgMWf^T2ydsJks@1sKWwO(4gqDk3In)x z)hW+Cn?%apZ~J{h!R&qSysiodilEQ)7EJuATOXnVLF=Iqpl7jA*~`l0*9Rq+UQo&~ z_qUFEk;2R94MjMH%N#0_+$RVc(KzChH!mN^XWTyH9eG3F>Mvrz#BiIU6W4!lQHF89 zq!8{9h6_UeTmuxFbYR%NinX3;?d5+|$m*L%xFc8yhp&hJ_jI~l?QRGYURF=P0TAJG z0ROPxp!@U8G~eMDi3W&G;Grl?fAUb6pz>HVwKEJ@qGihO2x!y~5VAZfOgD|os77l@ z{?ss!6u3{8wG;eIh1dS8l-D;_ReO@R*;^cOdENpf89?!9o2Q+_PXr;uVl`A4We+AS z(yktUsedjlshLh zjTtqzv}tRBB?4M9f>x}u3mUcmH$w8Gl;NSAw#*fP<<38oBJ#?cl5eEug8Yo4-1aNc zH1r|hiNaC)#UCu;NFY@0_%z8=HItN__rE7nrn;y@b8NS?n7C||D5ZnN_8$K^nN5(@ z(fzE;wns7AO#z^7lOx3eHmtj}`kt-f?Hfbb0y$Qd;cWqsTj>b}3>Le#uY+3wx_`|N z`xQgs9Trldh$fkMiktP@cPRF&W~p##e;LpV(#!Z8%{+i|jOAJjaC)uh?=+5lO)HUw0DcN(=XQ&m1Ji`7$nAvTR++2Shrlkw5$tE3BH>zs~6>?GX?a^ zyZ%YL#F4_xj(^S(@CLl%zF@J=uK5ig4gbj)g96@7GyAX`uP7FsjGRCAn^`PXS*vF@ zI$u;XrH&bGNIwx8Y26osg*HC*p$UB@M0*wSiPu<}OUXFnoEn_E1qfUR{$t&W}#PovfQy#NX;F@ZI+Vc#13lsge*HC%x{HrvqyY zUAgNGEl6PdrWTe@$N&Be$ftv1rKM7!+`kuD9qKZ45+h6jxQI7m{lKtQAeip%13K_* z-hqC2PXhED!l$er^B>$fN(qTd6^EUv7(=(y;!1CJf5Orz*w+!$s2_5?awM+1Y$}-3 zXbZ+uUbVXnP+k_p5$2IQKveNxf$6rSEQic`d$!e%qfL{p7RIExDc{KYY2is1pT>7K zQOgylHjTQwgeede0TwOSUOZ;`Kd4klILdDzz%rPI6*PT%N5etmPox5NIANZ-hKx%3j<9L| z7aAGO)Au;E>9xF%^5!{!Et?Q0S;aIA$c^!{e&9VLOoLG1K?LM>AnA>9YWCoP7c` zzD(n@6y>R)n*3^44{PmAIeOIqc6DFsaK}tt*Kr)>RlD-~YI-kake@{PMlI+g4Yg=ynl!;0D zdQht{t51nRx=ubATtx&D{{u>TSf}_?J9E2FXnpcNedVL+$lvU}%ck7hZh39R7`gU6 zYti=jh_95W-wWrKu6No?cb{4bsQ;n}kPxhYKokCsW%q&43U@aTXHKTK&}ki2t-5IY zXhZOFGZg-WQ^IJ=v2RRL?&2ORKl0u-3q$!+>N>a))3aEx+A#*(lSv95u7uY|LmzM} zNtC-uHGYw*E;5Qaz&#yU@9YfXNgI2!{5O-y?kCOW$(X_}`(EKdR!GD${4Huie z#`{4Rzc4_zyp*Omg5l&2y!0|0iW;Pl>cag-%4eY{A(gr56jk{+S0#TX^h-MNYB=D* zMv3S=tc(CG231mIdHm}mvjq-HdcjnBhPdyF$5Zz$2@p~r%+2||6|tqIgEYv^vR@+{ zKNz>(T1ib^2K25XRyMgNT)zN^ZM|2QWZu$dEEJ3+(30_x#tLytSO)h;@)(+8WG{{? zN06dOAauc_vB4{h8*Ik^_qg7Fy91KRPXJH96tjP?XVj1*TP^5~mT3O81#c?898n5D ze{HvaEYa|Z1o&qGtgSX&vTvHt9@c#bY}k;p0L5 zu92oF1ZFF3`CP|Q)kiK_FT)_7jQY4c6Yg2=+G-@4ifzBRrB5RH2f?nl<5l*NNi-4g zHr;rld1RHCipi?o{&I}6{7t>6_mtt&rIrjjpv>~Hw~XX4Z2s?n(}w7ZKX>IkqKrjiiM`uhbt6%>-q zRF8KpE$g62_=}10sqKc7wOw<}=<&)5X6-MCo4B)o&~n%}q5#BE3?b|%wX>*>?M=+z zz08YpfZVX7gD*a1(tT?`bx4Ercv~!filkd|3ZcK5ybHgEJlLnXs-3%rbn_&mk&!zE zm)4u^1*apD3m8rSO`SMsdzig+&vbS2{6TH>pNdPP#=76bm+ydoiEvo*iu0{~jaiI# zjnqoAb!X5vi1d`4tQEY56h!n-=_jJOwKxo9GTHg?cu~rBMFmqf@Z(LRpWT?T0|2Dn zn6<*t9Gf50w7ZojaanOpMC2Zzl2h}x%~zeKPNrxoko`vuMor_N#roUdCi5{1vR2vI zu6A3juh`aSTI-ihn&~3r8)%rR+b$*$JhvEZywy@H7-g2EhSQg(-=%4&Lvrkxl=$0H znw!ITKfbD?`_5{;I`$JE@Ir3_6$X5m6>trQcU!$u{~IaGwNj?Nc>GmS;M*}d|2nZM zxzNx;N3$R9$uoJSE={KZn>2b-G!d1HWcbeW_ffe2ZGy16c)PGY%?hOH`2JG!FwnuU z`Hc%%L5X3GonGgc2*6pitQ}z)FAU_=-EI>M{|(E;mHRbGPSR9S9($iy+O#E6QbENLLl#8ojn&l8eec=sl)qSU-%QNhME{SoJthi;nYYT$n>6}r~ z%|bM=#dAI<^y*f9&1dTT@IL-wZ*dCSy-)4(xMa|Wtk`t?=XhQrG$!sr0Wr`-|H~26 zZDxnnr&BJxwnxGfG4g%XRmY=KOMB;zN1qPFnCyXC>zrB82tWSUD4?Rbg<1XZ_6P;S74|Jc-) z!>MEG#Z%$6PGqBTPC~Ai>?6Q{7@Ztn7pgNF#@wMtKPD%ycfjmuAJrN}JlNB|*U+SH zj?k}_JTs8A-gD}m=lvY5?V@K%vAQe%Zfae~J+>;j-8SJp+i9R+!C$LQy(d@1)JK*j zh@ebzSaVBJ=HEG;^#ga@qhKY(e)gz^R&lNab-qNi!LBHB?L}moc?tTFeYk}dUWrMj zow6Wo<50Lh8L6-+Kv6F#3SQ)}Q*Tkq!*zE91hY?PCX6JrGto>Qg&6&IU@akjEA&t4 zazy)hL+DC+B-eAjxC0M|v0dNwIap?UfJjSc*^%LGiY}JzJ7+?#-^T>ds!8XPhBK@? zMP2SszTrw*h9fY#snkPQ+xHHbD#{~f@KVvbBTM!#(=K} z7W4l*fk_3v`EWbk5s)U!IlZDO& z9lC6LAE~ZzJhgs16;7@rPZ^>iK4*wpG$*a)N5XWNlqR$6=lxi)DAwBG7$t&C@~HqA zf1xe637Zg#km)5Y!IJbd)eQ0xg#~~IKly&0G+8+glLh^KJnSy~ z)KB~dg8Bthm!QTMJPB~}WEXd@VklffTO(JglICPcIr5lIv_<;Tw!V`Pw zELQIUKeoE+N3>rQ+-i$FJNxIpt25QjQCu*T9{s8{VgdJSenm~gKI$lZt&YSDJIhSP z7<3_vuL(7ZzC5k>l#h2N;3aa~225ynq$EANfM{m8M8?s|@>12%-}#mOS`X*_l_9Ik z5Ib!&tlfhC#p`56(Li`0IxS=Ze$%rjOC*A0mftB!>(aXU-)2ja=-KvFpR7LGsPp3z ze*~wJ4rZ%h!>7oWZ*2aOh6b75@Z{XBA9?iDF*va-S=@c~it1>nm)^FQJ;p>`oe5=0 z*8f_Uqo?43)#r+((m(Vnl=h8p_%DCKf4)_S#o3Y@6`m&=rNytBr_14=DwH8h>QKkV z|49DL^2jsI+)oR1dRT2qUc^N>xL^VT91?T2t`7Kxlfs0dy*tg=bcIP(o9P#^Pcfiuk&y)ijR3fy(0HoyyCj1ca zsc%1!H^Jwfx5}G*-{Tzmgv&v%mu(Vb{WT7u)j7JR?zRHd| zp-bH1DCb$OX|b4hqkN@@(ypG3`J)EM_xp%qPFz>kOZcdvV|zKbo=#V9j{aTRKbJ;LY?#BM@nqT@hXe^0=FqhKG0`X+%u0mG?&m99X&Q z=R5HyKE{ns=HWRg>*OEt=Io@!CGdJhxGz1_^vL3Mgw~g3HxuXHNQS`^{l6f+IS@9> z!^bbI{zq7=OHjBx(RO~WWoc?Kd&EgEZup8FNner~S9@$PT%Q|=kcj~Z{Jj1y?N1YL znJwIXsuyeX>m#-6jqNd#uuD?b_XLbP&I#xSQRIM=f#lx$zEwzifppMN?9fFy7Rz{D zv=Gcx9-8_&`nKY;Ar2@B%>ML&*U9g`?`o!D0D?-C$}2?+D?DIkG zLTyBbv6{tOm8X`q*<22^f2SZy^Kp;7K6@6s%D3?EfMvi6xH}#*jj4$*{9(p}FN|Ax zPtBQhUb~*R7m_Pb(n*DjxZd{9Nl3-x3gdl`$6y>Ds)3aK3lbKPJEcTmj!X7ww(>Tt z0*gVz`$eiL>+6|dHXPEuOyHz#FtlKPB7Pb!_aEz)aR@6WVtoytffXN$&8%F^!=TbL z7IBx%+?h<|8Kb;csTb`Xu;2gxr`pLYRPMLa$2sF5@cwlQp1ODOkS8>d9WK!NDrVD? zzn2#uFsTR9IY&G*EIPvgAmbyeZ3!u%hCvG358m`??Oc%Y+lU{=kS?F^#|!w@c1#ul z20u-KaWt#9Z+LDp{fyEoL=aomR`ix zt15NZg#3qtZ`-EWj}P6$#=R1JP1%g^dU;y9`~S4?b$;1CtA8B%&w6iuTrwGYRq)fP zf00sOaw$GP{wiTqx4VQ@>>1)g`|72H;-OGOx8$E=4DqF%x9^j4t<{Q(Uj^M=-JQ|U zXof1=T*e4Zwl(K*_lhbY@(5HC7dk#$XGr$VGsiN2xAp6OT2u6W4WqW0ApAs;FkVP_ z1W9HU-fqp7wopJ5Q08Q-YZdHG5i=?!N!Q{0xd^zHt)P&IUP;#_Yw>g4h1 z8nQC}c-H>+tuDl)(X|GS8UC-rgbhOtJ6+{n`SY&zf`9jImkg8-=JpCgE{RV72xM_J z(i{AuydR>U$!?y3%Faj`JL;F$HZ@w!D_%Sz7MjqV z?s}=+fF|)Wx%d6M()b#tp6w+4In9yVpPnc+&`2o*+Kmx7&D}3vToS_T=rg$~nQt}C-gW*g4_o4s2A%uVqSPD#o zu>sTPrg#4D&3CzQ=9o_b&N`+b(6zlYZB9?Z8SUHtMo}bYZEnpKb1QP~3|@P29#|V1 zZ`!e(m<7MH(|SSe&{yR~!-Ui?tj!lY54kP)SU;&W3E84&j?AY8m+N21T-T;m-?xaFFV_veNDC;U-jO( zjwx3p$bc1dvr9A0Hi_2ANfmOKoZPW&|6TX|clgGKaVGIdn&|0jQuZA=U}gv33wFTO zz+7d3?rw*_?B;+7)qT=?*<4Wl>|0%-LHrSgy;VELk%fGhtR9zAt!@16=4vuPp+m^i zGW9WSsNv*6)VGD~`wYnwF<}>OV|X0h zs#KiEY(PJ7KTM94S=p9{WOIi+_&t-=f1E?Z57edeW>x-7k;+93mw~DbQW`RBT(l~i z83Ugg2(7m8#C=j3WF+ynBQr)UXqLhw<57Fv-6+I0gpIHKVsqS*K2nLx02U(tc`iF< zj`^$~)sIOeJ7D%O9)glDX5`IJ_3R&CL#oznt|b53eob)jxZqpCJp9MxyMn0=f2)X^ zBTwrCc=HEoy_j}u<&)E7Q|mT_#oV4Xs4{1OS9CS`8Zu;a4Oy-f&yBo>EX)ZGTOsPN zA%lT&Xue*kUX`PmqDi0z7JNl(y(-?g_&6FTf>G%;BR8Zk5EejMS8<04OU_3pqeWr#8JbUFfKL_d zPUxh@b_)r2h_Z#;e-ggx3YIcW#rKMS?iWz)9>_$CjU77T6?uLipv>}Ty~EOrH_Pv^ z>As2PZb&5?6;HvgV~jEXr`E}iGEZQP(R?&j#h@Kwn*X&19#Zn6CiyN}#%+}8SEq-z zttNl9{Q`g2=y{pxQqO@$mnBB&Ud7C@q%LN5DniLxFb(w4n^y%X>qirmdS%g>U6E{1 z4bte>@nZVtg3Aq@JC>VgPC~Wr%ry5(w8fMD>9tuv%vs@JuI)#G#|$5oN}r7($^&-M z+t~6AA+rz3%m(G-WgO%|c!{>uNIk&7t)escXC8;EE2V2w29_ABC|*OxIad*Fhv!aQ z+~;M$vDCSEPZ*CURdkCjrJoexd=*;Rycw6uF!UsjFGHPgEFP)1S$W#p- zA1C#DAJ#W?>@r1O%5xl5@>UC^pU`2UVbc(mg)!OxI$J`au%^pBu2N#S+g(Tb%Z7pUTMZ+gtzlH& ze!r@x+&c*7_InU_2m^D%o(;U&dpNMPUp`MR6hQL-^^P}H*Z-7{|Mxq8QhyGD;rU{D zF(((FcO*VsxUmy3zlEFw9h2l}UZ1{A3sD0}&S7%{c=8g0n>sY!LX6>XgNpG>$gM&1 zfBj2tk0pn9D+H~zUN6<+7N@PoaOJ9kC~5b)q+QP=6hH!rOb0(QkcZ0Wh=nM*R}^H; z@132k%Jo3mQ@%`D)(Auv$waq4Az3AQb(z+Nw;{(0PGoQne@kmmI$$`J{PBjr5JWqH z;3XNTtjP<~rZ?_~d^#)_4#b+@TT#tM%3%zxt?l2!)@{g9@Gq&Zomt;H@j<8_MHg)r z*jfpmK*diMoZdzr;8yy>>Mm~khZge3PzNcC@Cl@aD_dy1;Yz?ueIH5CNq-|@!b_vb z=BBY_eH5`n_`yio5NMvVbkx>mOv~<{ws8Pb2_Def(%dq=#L5c$7&K=rW5w|Pfm>5n zfMnPaD^tWts{&W5oFBmaq?2s7$Ew8>t^8gGDNC~r3O#z!J_Uz{v#jMwh5xwUwI`ybbY{O#TDd+vmBHdzjGf1DkSi&Ws<eodxfs+(DR@Sq# ze-+A9C(HzLhB34I=OSm9Zrl}4^KQxC4h%Rek|S2TLNWCkX5Bx=9UlxW9ynEHo?FAs z`p)6nD`!YC)IZn0-UsztN@g+-S^U!E_3r#80-;+sN7?`;dS%7bv?r}A!mTqgqLV%D zK=veh(vq*N1^s?pv7&NF7jZBC4f=JD#SqFZ+rC&xvRfR(_i~)3>Frm?!%F^jE`+jf z`-P-va{l;&Bo|T-bIHL$ULA__mUyxP?bysBsyIkYu9ev(kI zfO){l-ObGRg667cYB)Z`lQnFCgp_o6I;R&u|s;?oJ!jg5q@o2v0f3o|LqHJbv zab@gVmLszb@0XR%em5`=I6b+BWauL*F!?f>XJo;GX=9}e54qf;jflJ6orsFKgA1s3 z{4&W=@Y2F@ei?HrkdNVBIZ};VpLNhFIOUbxVTj&l8=P4>bP{$kdwj6(7MgKb>ufc= zBEI_8r<*@?KS?_sC6FCO<;YjTQD^XWa^~}kSbl(H!lwl+Cr1(=di{x<8!=AM%baN8 z=!a5Wqt8h+>fG^AzW^c*EA2Kb{0naip)}hlkM1JJ@FU=s`A8`slKyF-<0c&kixw(h zS4Y5V59R>uc><%+Id8iNb2Q&)Xp)edek|1q_He7B{8SMqHlBsyg$4C31tO73)Do`K zvVx&YcFuZ{fj>;aEK{UDcR?~_z1Fz+-@k0TGApgvm0T`Cxn#T5+5%Az*ZuK~f|`r| z^o2d+<>hOLAag_7m55RL)4ybRATV4$XiP1uhRk?W$WH~2S&9A(Na!$Wtf1PZmyXJD z9c}Fu7$1KByBXXGcYuVIBG30nreb(*S3I*SlFL-D>#joNkC8qD3B|MWb8{Ob-{f}i zqTPM`qPXikIUXaJyfi&=VSHE`Ts|M4%=(`9ZGPsUlZQvb*>GgW+yWf$q(QcOLASRF z^I38~xq>ScdN{@^9<6U!@;*!jCwOETOV6W`0?&pbT!|-R&>KH{13>~3!ptG3L}W4v%gWhRf~G2Rjc0qzIOVIHJIGM_qL z7uKNQ!P3RI_3OHq%IctAMWa!3a$${q2r^KkyTyuoIXW{kpc#qT8EO-DcgL)FN_%Xc znw>esYo41qflEd)>$h1neCwasBck0s=gW1BfkDwB1~IU22kQiLGNiRN>>485UFIS# z6Daa2SV?0-yI5qTE919q&DikYrRCvBcnp%~KyR9=Ug9(~=0g!h$0F>^&8v)58VgSy zD2zrv)|&dhWJAI-y1TqEWo*u&ZaXCxHJ=TXl#izyy84KT+x9br>?031ueJ`kIv9)} zDm?slFP;4J3Yt*TwSv;R1%6(rGXDNo|MjBP(^f;_5O9EzW@~(T8kDWMLl*}D z8ri67O>29OVK^<@uqUtORMpS7*~TAui%mUIu~KSv8?^R~fS=nzn6^39;o@-T)eRjR z6q0G1PrdThNsL>urASic^~*!Fb6!*Atb3-Ea*VaKJ8jEGjKDI7yQZu>>>Ad)W6m?o z9t%n&P$IxZ`ghyOgGMmESE$l#=R)=`AejxFM$e?knfW=YEQ zpSGulBwy`G)Oa^8p6&M^8k~-mpH6?(Kcskx0!PIy+Ftn^9&e5-fmRl8{#k3?%N!vq zf5(T=U4GVYH-{iu;a~0baBw2?+!z=Kumj9ZlC(HF6>okt0p^n^(|>=fo>;yZ+pN%r zi(p=&t*;Q>+CO82-~L<9s$jlS+Y;Zs)qlPeh&nzh@VzYfg`ql^U;qb1-U+(DB_Mcw zX!vg;oYhBmZeF|Dj~qt-CF^2Q%E&Aw z-QgFl{ontUyQJ7530)9YgYm=4nrZKlnKR@U`pK982`8DXN2(!G{y3m`9Xfa?A^)?B z3PyV}G=#X8sPV_iShMChdiB>Xuh_r-51E+IoWp@E=@B{0-fBn5j`Z_!c4awH_6T!pGZ#SU2kA1T9uRoyz`j%kUgp1|)KYn!xk%#&b2@WNxw z_C_l5M>Op8BD|J2MQW2AgWKmmVUm(>4Y`MgW0FLf>(-{h^>uetk$84w#bhg5c=E6P z>E&l(Ot6*9G<;i`*%~toEjTMl!%&2SLngNeab^`78~!NmsOTFqy-ljun!x}?2XMw;b)-?!rrnGp`Bbp6Na!+V{zM?H4BwL|K08u; z(6Bg*`+-9J0i}p%9%J1!Q368%{BPOq3r~MTxlXJo5HG2p+e!>W+Iq2m`RIzc zd`3@2_B(zAYez@0oemU)ow7fO*_%pl_%*wEYhc{d7wd=`-nd zY*sfT%3t5eV@z)boCH5}weGVTj>sAOdEWAkf5h3EB<)~=m|a3T6N;I&&plr04RHDd zqC+nCtP)*aMLeuMTmJ2%g_+^7O&aopS$fSy0b*uV?sco$ywNL)h&B>k2bz~H{h1OC zoHV!po$1X!=3H7%6z8r{J5zV=T5t813L{Jg!n3L5Q67wrH*my60csLudLsxFmDw&k zhNN-iApO)psX;9XghEuf)=jnZPpVE_%i%Z1d(v|PX zo^$awb34L$^U@93aW(@F>W`<_j9Iae{N7c?#~4I5q~MyMH)&^iFjP;|wJ%&N0c-E& zIX}w7i4kcWmrDOT0MPSn_fw5YaY(~|YUCC~OR)}b#c6T2V2{=x6B!RQ{`vw0Ie3~~ z(U6UgcxwM%LNk@Zz=B^JbX=8pDdiO}TeU0Io+(J-;!$$=s1X_J7*XV1;rmK~pimZ`}Oo@sDWMd<}-Q&-- zIsR-d)*|;GW{uQtKXovWjtj0jSXCnJ+3iMay&m7k44<80s7hAM3a;SHtBCSUN%7@< z2NY};e*S)mc@NdFV;O-sT9K_0ww}6%Y!9RLM6MxalBWmP5U>v(-M)r2+x{dzEuky8 zN<&^lV*4?0w`)i$!d2@k^UpP8x8NEwd=1I%LM-rs54TK5oE@NMj7(Rj`Y%g?#_bXK zOT~t*mE0ZsF#qECN?ohn7l2As0<~95 z{v?JvITZ8kA(vTLk45{XuyWe)@|MX$Udp=+rDUGOhCgGqIbSe$VEsf1yI@K+vij8j zD#ifhXZ)-SUoX^YV)$n+AOHC_L+TvvqorImU7IJt%-;^GTaye>&c=wj_-lyOR}r^* z>(D=#{A!Fy9XHK}*foUtH%eQ4SN3%{nqI;<>6aEmY&ViU?l;Gp^~q%ak!AAK1c-~V zJeWxO43#8(F@b1C+ZSH-OrzV~Ei`W?1huE7;cMoYi9IkpHkf*=hM`{=Dq!c?zM2RT zJuy&DPoCZa!{Tw}OY769xmGt(6>V@PYL`ei9C#?~nw_#^W-c}-wXgET<`#5rM_%Qj z(G~XZc{eQF3;3@gZ;Pv^lea@3SRYxJnwLp7e^vXlek`n=i#Ah&<`l`al(e7JI$pW_ zU9&@!iv_#v?Y_7=veW6myL_aK!Nk}jPdgff*?vzbozg@%-Q386;m1kV!Qd5^-d?*& ziPThLHytjDU4KuUllFS=gKo*(2xT~DyK^L+?m0*>gO5LFkS4^9xO~0s!|LXl6;=uy zK~VrsJM;M>1&?dP8aQ<$7vz7Cdw#?QEtNu4UD3UK>4r!q5yVmwHi9*w`Qccly2 zHd91vS-o=GdTmBLpJGXEvMo3|c7Rsm=KHa4t2}yA;Crt8 zBx_$M`)K0e?-Ek-Lj453MigM>jl(Z24EK7kTWyq-QIV5{{<~)TL82 zqa+xBbKmhyyGFw@afzjo=tq&Gsef$l_z-6O{-J!rt)pHwtKq7jMmU{kb==Xz zz2Vv6BJtfl@bPFdHk8&3Rf5>m-tNKR@BvzahA&|Mpnvo@G|<`lLH0gnTruBD&~I*L z0q((g1`G33*?~Q~_5RFmtyPSpclZ1uf`-`|wr=#+fzdwLN&q`7APux9z_pm8wWg5$ z91P{_ehvdtce)bD;I`m3O~sD3DENs-52iU~+pWcH$drG)riTMq(G-;rPgNSzPJ>Kd zVbKzhs#Q4Z1{;eX*p~1e+8z|A+nJgwq(^9ym!IHGS{8JF9@yXC?XF!KGMx=AcA_Cc zE|x}g4Y?$=X7u;eb6-Aaq7hwj7EF$mJn0*};2w2%NV$W zM7BUJJH9|I{wJFG?~i*7chg2F6-5&*Be`aLB6{A&>&}arRtZWZnwX06@xG^5dQ_U@ z7Bc=ge)-GE6yIcR0sFc~Ls#;@;U)Lub;Q~t8o4iS8m$^NQ0jmG_%|>pA#o+UL38_<2)->5Ym&lnt#-mTicrqtU>Rhg!dzuoF7} zGkg8FmkTP!GNE#{=I&^eDH%vGxA;pz{&yX;C6RFvnOm%%5Tk)~e8( z!p?}!c8uWBg+%D<^nsPU{1+O<3@QJ-?0U=1LvfJtk@40@#_ru(_?`B>vsD`WVh?xg zlj1(+kED=qw7B@Hc=di16)f1aT`Zm!Zb;w3b5_c}?ijs4R}@1GnaY+8HWT~kdN|Fe zO*`=-kEB)1 z9_N?EP>UM)VFMvWFZ6Taj{4ilE8GlYlzG~4RoWR*&*sC39_<+44g}Rc>X4ih*GgrNSi$k%3j6Ju!se*QE=fT4{cC-;Z1zo~BeyQ^nz8aIf%JvA@dkW<{;&B{vEb0`h;xh}@3r^0WeD9LK=?yR)0Wyqk9x#nCS#A*!^0 zFR^*(8-pU_#nOlZjP#8hNViGniiu-&93m+t`sAh@(tCiKu6v<}05vGb#OC)n%Zqrk zTaqtosT^H)og|)Otiy%AZg0B(+OAgQdK;)5ozWQ$1JZR1Bwkp7ye zmDd-?ZI?v*wwRo|Qw^oXWU}!sD-(}CS+>S^aQp1q)R_#M`FEA+SrET8Avs=P34Xq< zcD$=yJ<04m!e-rZ-Mo&%dKA0eFXEC4`pd_yUQ}-nwGz+^NCFk~6wSyXsLweSMx;j2 zDJ+9HFEzC~cnu#uy^>PpHwj5WuYFs`qx#XkE5NF4->|c<_D4|lWGB=xX(_We{aP2Q5?C3s zF0erFcJ7~xeYR}r=K1=8s;IH-6cEzie&q*qaS(@G`LaNEOG7hdrz`S?5SI4w2HRjv zhVpfJPOS)0bImS{%TY?aRahkV67{W@UdFTifeJUF?2|WhjqHT$VjmZFRUj|Xp-S3WySS_{AFPK=2v zk$LFxrF7c~1LqD!blZvNc3l!@?TcL@`Xxj!Zbq`!HUA8hTP@HA#(e2^CJJ*4$!v)4 zmwRRdP8cnk$lvzs?#WmuG}_Bo9@mhk+KJXynHHn%aTCs!YEJiFwm;sej*-E3<(!*A zy=8k5$;A8X=4P<<+Z`&6v> zQ4bG9H{P%J>-Bs+#~-&jHg&pXSIFJmCTe~IOLf{!%ZS{7j7WZ!NP5~ojZEj?e1Rwf zZO=b~%Tvv!x-E`QsEc~(h~}YS`YkRil5VNC?6>E0KGV;)>q6h{?v|Gy!akDK<xtFPAnxy|)oc-DWh{6v zPX*pj7gLvOc!-lCRlQP-{7T4|KXAg@l0|}!Vsoe4#)JVD5>7vX(+ZfSFSl=p~UMBbKo^D?23>qE>=5Z9CI6JS|3mZKrkYVXP^X`2TdniJ{{zw2c`p>Fl zXAi;;bQ1^5MwRqW!%lq2srl1IEnXm0f2tc$2{5HteHzpZF3dfr$Vy-0?iy%w(3;*Q zP*q)IrdZff|0w1CG_kv6%B$H48hCwsx(q$Xeswh9>X{S~zB5D_=vVUe?V)7}R<>o} zfahjqtub>JotyKQqR2S2U|$@EO@U>lh_-TfZ4;XvO*(qZgr29lh>4G#w=T`i$1W^< zCt4w5$@UBiMDK$IuSz*KMZWlXQ|Dz*a;Ihv`RaVtN6AmGTExp10ERhC)Ek&TQoP}7 zOSY+MBTo=yWbvcmS6v0MftNn?1P|IQEXoapB(yJY?qxI~KB?^?j5#_V%og$mXvf4C}B8TFQKAwStNp7leM@O@! zb*H_iM(-@iO!2v4gr%QQMw0d8r<0K4O6iRw^W9$QgGC3MeU5eD+a7`hukc)xzdpaFv$<(e^VEUYGy+wxJ6ZW*M7_>|HktN7re8W}Ee>1cHxEX!J&yGaB zEYC7~FpUA|jUvfuc`)-Tn5C5B@2bb#IiO0>yjP&&s@8ofLLn>{OG~XMT=vZ3y6Kym zOE+@VBAkyZo@(Y^OJE`*2yn(D<4U4@>P=oZeVd%3l)J_fPqOM>_og13_`l28kCAwdd8z8hKRz5Cm}5UgzSBXo2q4_e zZy}&;;PIg5IBqJCGv{Ws{pgC!6AK2di^O+0Eh*Yx{?yNX`Brh)oKg)zRcb(KU6gpT zlIi6XP(P#=th+YUe&zPkn5{oFVfewGcxsgfz|y;MDgLGm3^4A{SdxjVQ|Rh(KQ}I2E}!w&iy+-S`?vs)2V24O>lEv8NYQPgg$Cqm;`Ua zxF*|9!itzZ6S$`211%GV^>%w0$nX32J4VQR^|b zfSrU9+051~B;Q>S|Akm3uN5CvK285PF-K^2gdKf8@&OQ^`W~B@6fE)B!qBAdS_y4n_&2f=2jhrgUwDKtK+!(pbzS;WQAE&;)uEshWuUAIJIv9S){fu z8)y@M%x0XqskW<_-`47s#PgRzr^SiH@iO@lq!J^jVXO}V<<#$SFO=3U9HLc5j7!p1 z$ApH}vvqGpYwunBV2RBQxjcfKAOqIF_?6wIUTvWPu77FT+Bztw@r6+2w$bczGl;PJyYqlJk9FVFudrX0@*oNfLQ;Qzb%A2L4iM0{`NIJ$J(v&`s76nZ4%CPGqALLi@TcO7v^ z9V~9SnAf%J1=#!ykRpsO_=p`NNn%q+WYojTTF+0`6)TODHEv%DH#(@ zyO7T`xCmkv>3t z294}L#t&j`#Y{*I=r%N|u5oVJUqsl4)!*|kh2dWcf=FNM;!5q7OslWf_WJntL769C zz--D*ff%Vz(kptQo%K)k%|lo)oZU2fEHxA@U8l}6t3Ov*JqUY@yeNJ0ZAOC{@XK2F z3X)G1ngto$$chVNuKiq*7F`#%%^G{V(AdYeC+QYUPLd-}{e`7V?HM=*@4gNE5vB(e zILZz;oGNe!wpe3w@!H`+@V&h4(R19|$+<~J;#=?x0$hBJSmqc&+$V0rv%Rx8F1+oK zuD9kZZ?TrT^m>BxUn+@G5jW7sA4e+lh^#JY2ny877+D|GiiT@w6Ie`FY-`_U;EpLy#B0ya5exij{~i z57Qo@nKhhCh4vI}F7|hXK+xlp2nEgCG{D~v!KF?L*JM(DVy>#ni&iZdSbz*Wns%EZ zzlzqhPXm?Rl#{{@r(3~rzRvMbCu6{WwVChF@9V{6-uExT%b)MM!->i=S%9=z??3tWc1Ooge3&yB@OV z*(>4S4D!2sb@oM8Oj3J0dwV)YG+&hV&mNGK8ws|OtTJ?Nz|t>QT%Vytbn zYppH|&-?eM_WKY^GxOC**H`=nX1ptn$qtRf$14g-Ah9u5CG$4pqv=6oeTuTyHOhUH z20+M?pkO{rnL-QF(3M|4E7s{Do)iBfDDM{p4RafNDRA**+O&)|iQI|UWOqSzg^K4=NjAcWjPeOxrveo4?kJLQI9VFB3 z2Rb=Ku4GJj#U|L8OetzE`pc6=^jKak!3@U3ZdF2g5f?YWWrKBsMwykVEqeXp*CS*AeW~V*u7SO*MA4vg*!FP&cgX zE>aha$EQ2g4zJgl!1I^$ntgQ?cp=MIUMM^Tn)H7+7L6W_ZkR7~UGrH(0?J3FjaWZw)b)0`Fa@} zO)^JH$L^TcBu%lDcG^ct(_Y@Sv?t`$Qqm(+4Q}@J(4)!+REpmx5!w zHUsjT*0P}Y;^*84Y%6&{yX4kygiBQ*{OEtbxG;@EE>`XIU-&k&Rc~{Fd41|=+V_Y1 zk+fN*=)FWGFt)SQ@Fr98X~#|Q++|9Ey|%mb%?5KVh_e^aB>;F3FDj5vrxam=!vnIc zitZ`cpoW>`>u{Qc<%#ESVV?z<=*L4;Yyl$s?x&9oTVqtJ;TB0|fJgXMIrC7HflPgK zjQP1t5tx&zYR}>H)gL2ljl27q(_#Rb>hNe)&`wXtD%L{ncA-rZK+BrIJ@SW8PXuTq zex%E1T6O*)d9#xops?u0JNKf9p|>t`3S27J$_xHdoc$$Kdd0EQ>TvfGSriRmQW)~< zkuW?3GMAYRK-}>xsqKR!pX)kJQ>cRV{<}LL019$3r?CWtA|_VaF{Y_~Jrx$NFzG!= zb2G_SI5X;f=p)1Gw2+6ASgTn-X4_asTdsSYmldJM*azggL=utboq5^A)G9)9VgHM^ zdE(YFVz2f3X0y`_cqB;k@gD%vDUOv(nmJKOfP!C%?s@i-8c@7I)2k7)N||Oykw{-0 zt4mYJ;d1U8X5GIudXDN>o)$Hd`~o!V6Wazh7$G-zgFyV7QXCqa)?oBy)0++5*}L6R zyR@x%)Imnj;dPD!5LF{&^zVb^ox5Asg&Q~RlimovjRT^{G&=JT=EC2UAA1C2Hm%wN zRIb!Jv;U}V6>DEPE_3a{;?Ql-qtwy|!Ve<>8!W!Ft<0-zG4ziQyBFWL2=`q8J2){O zdp!WKL*O~6!D*t6HRKN%4U&F)HvBr`MclS_im6{dys**I&Dl=whqwa z6Kv*&izD_PDbVZCg|(6b0{s42N)_M^3skb51$nKLmduoTRaOB?98i5aUM*J;vCbOw z-SE6}!LdIpP3CRRoVK*`O1eDZ$}aJC778^cQB_vqq`0rh50y^40anb0=$TKbW-NsJD=S-lS*Z)*%HeP)~3st9MDsND0aQll$B1tPNz_>tL!46G zWgG4r+lj@trhm!05XysEoGzQ*abn0aucrq&A}mUxzw@nbWoDYB_3_ z;lIxEc^)tdwmyRtKIdY3zaNw#J&l_ZBSp)OSZT8LDj3H->P=#urXD=(=RP1pLmkHv z9R!XIC^fO3FQpUOn~wlT>lcByA0ZOLh2fR~t_+OecY(U~NiEw!m~NO6_5lKE8o11; zIcj8q36BK^mq#?8UYK3ee~-M+V4a{{JD@Q<{yVZ-w#SjLcy+o{{{D8FjLnZEL`^{w zEDcas9%l=i`k^EieW3lAXau(0=@6}Y2rnCH+s+&BCu<*0cUHU8FX7hjpHsi4bRr?K z;m_7?)0h5p`)ckjCS~=lTZhk1HvQ^utxlP#F0IN&z%Ry6A(IQOaQb9rgqH-dDwe=Nl8Lg_xrmU z(+dX|rin71(^D<*bHRsB*L66|Y#zI`ub+&BDH=^@!#!JrEVMwB4;HX0#eZVnAKIYa zDZqX>E$Bukh|Dk11bgkk*~?d#w088XthU4j!{iCBxW4Wm-I*#{qr5$-FNE;q+YGg< z*4SUsJL${r<2COQsG2mN>c$qGG<#RKDga^Ne+<|RxvWbKIBasf_hB;%MFrjh6pha@ zF-B+eyT?PGRD)ghS(ZXQ5Y=w@g(_Y&S5sM5ntb z*|wGIG@19qRs*Y$Ycc`VnVZMiYqGc5)9=OeqO?;0tDrc^O>UxZ&s#nt9luVP+6~x@ zopbSSc8iR#P%%!CNeiOWuT2ShwC_k^8~Xe)YMAX|I{kkxr1=fyU-Uhm0!#aoW{FigHv-u;Hb@@x7Nq@NUa8>9su|CbjbI~jKFpS(L4Tg12NyG{O`uyIm2ObO**AO zf6_OWk_u|}kj-%)xDoOk(8#FBC{qg+EY`TfGAu@%`lMy_3#r@QNHxg%?L ze+SJmcmjWuy4?9t)~8CV5Ivq?2$$N4B{x46*t*a%or>V9I7_=unTxv*Y@f3?+tGZdFX{vz42P1Yc@h`&y0L#Lrcf7vggp{4ZYmbZ z9PD$glicHn92XADp(fRRjRLT*h$ui(H z2P02){8`?k7eABFMHF3R(kn}fzsbX{9KOE8^kl6>z{eUR>}X1K%N4Kc5wGGcva_Oj z=ipKGvhUCylZ$m6e!eZjo#T7kF3CU5>2+? zM^3PjY+9U$S|8AuxdvUNW#Ug-LaMF*ex0+q78IA@+zeY5+4v~{aEdvY?y>k|eYQ8d zZ*RwcH6IYpKgf@II_Y&JQ`rg230XH&v?qsqKkbLE`Nz)AkQER^b;leJ$kSWUB0M@h z0fCGy-#A1J?Rt`789h5JOjqKpPjvTc04q^%d=Hcl4UFMTM!&Y0l8N8ZZv@0_Db&DT z5^|PVEpNBubguX=-7gR~1O&M6wgj94+$)Opgy`(*!1~m-UGFUAp|VASwQcyQhsR}G zq5cQ7wEy%XkT6pCS2Gm{`-amHD+-X?(Wn%qCLU@&ndd8U3HzCeE6wk$W?>oQ1x3qW`N0|4tAGIHo+G8skX3A zBrGKl+nv+hqpMrr2dqc&#Co^WJLT%&X)sE|uan`QYMH)R@JZLDBO*{IY6ZOA|)R{LI_?7GL8gIp&EAA57N zpUWnYg^)JG?RTnP?xsbH591ajgh#JO#m4V8vmsL=&DB>q5`D51r$my_G}C+2TRRqP zWrcJ7$v@AqIzwFYB!b%7Uk`AvFo>5tJ})bJP5LcSO%^Ty{danX0{D=N6PLn>q}%EvIY1Yuy8dUW|UtMl)3r@F6kYv)vOX`W_%^s^FJ zINnG;rS|8Ou~HcQr*pcuoKZStjvQmzv%9wgTXbFkj>Rt?%|Zggp%=fHVV>510CqW~ zsyW2fP@l~}O)>!9jZA$cTN6)4P@xYjJa}3Z$Ni1xUX~hJArV{}5T#F!DTZ5@-b8CG zc|iY$$BcJf^G8BAbfiSmv9QUi`^kG+dbV;M;k6*xXw_WSL@-^(54lmbT z-dQ<_-G@a>;INnx@^a)+W`@k_Q{o*P{-B_4iq~APB1~VR&OCW)@uHSfO~drm*Sxjo z7kdSs8C=`Wjk=}0KdnZo#$3xsb+>rFiA@o6j8JMuL}GC@^gl)s2+3TI9*Kv1jZZj4 z76|4}-1f_|u)h>gCu|_9J&P|mFNI`+NF#5OxZT}1aVxq!6@7$lMZ`66ZR{Vd@cp98;am{4 zsJIo;gh>U;g2=G|#@X>48o$lU=B*0@#=*UuH{$TTP~e;Opxg8tP_C%uG@In5#sH(PaxmJlz2gyM6RT#C9};ByT+mJcK;D%e_cEV z-_pX7O+viQ51#8&@SED7s$o4-xr$88p>2b0{4r&cx?;P zb}lPXWP^>tPkoOkiX}t5{|mSHL=&H1x3c}FP;tpvpHe4L`7-M(3R|o*-A5oKVxkJ_ z23=XNvdb0coRvJt9T$p%2_@`Xe^My-R;48v9k?L^=R+>vsEfIeemt_ueun-;UY?&jmbDOTjmy>?GgZ-aVfHiv0gj5a#tM9)Qer#)F`Fc)1A47{yj5J zYS?Y^Oh(vKOC6ZUyd)3j%c{Dj8QYkLN}?TlphG2P`Fuwv-^c%X_ifvO*YoWP!1jL* zS}uI;5Or1bypgFm9s#~;a)SZBSBES&zp*g==a*gcnZ$vP{+u6ak4Qws{uRk?&x7O5 z>&Uz&kK^VtL>};-BKdpv`wZo08RMtt~zhvEhv#2}S&CrGCRNM*66NhtQt!AoG8$<=(2k=j?h5+&BF9jQ_%rR`0Xo~8X zTSw246~L2G0$}VSLj6I&?bX9f`}LY9MMk&c@sH7Z$V(KxId49kqB<4U&Bvyc2gu`} z-|=iVtII79Htp%%v{$~8aFYHAm|eDyzmk||bUqAdjnh)8=rX^bqigxL^Gk7NqFu^| z`N(MF_QeDURf3ova4b^wGN*j17N{nA?_@R)(>Igi+^~3I&H0Oxo0f^MvhnG|+lP%x zqJx^xe}8P-oc?)BdAaA}T`qNW+Fb!Z#Sr8YBrK=^sH6w!r{<#o7Y=(;&!G9lSLZ=7 z1DRT3tV+6^Im`yT%~VK=0xZD#SKd+I@6{I_uR>!s1CKQY;C zrz~>4X-Hp8d*P2DS04rUwbvzYZ_Jtpi4jzPJP78 z%ZZ@^*t8%3a9mIN1ZsnNH&l1^Dztq8M%x=N-%z;WoSrTBm%;?Ih0oa;dk)6u`g&-} zYVG)lrpPghPbafKFVOALb%E+sQ56a%Y3xh-8=fkyr(!3Aq~oMhJc6TL*yn!g&-80$ z>!3~_0oTVBAQ+iQK4rV4)LD5t@kJbs;aSQ)P*scp5es;JR0e@&2tLb|Yo9+~QW!z5{8kvvxk+t0f{EEm8 zjkAyvb)Lq#+0uTm)dUL*W;3&UpJGK^xyC)8H^-}Fa;nLnis#Bv4ohg0>xxiHc#^5>5%xC{Ai_3Bj|n%V^3e#TXrUu z14jny7j1a-IJ+Woykl%Rpd2KHlFxM=95hd)=Jn{5OaOAq%?Je@4zXYqNvgaCxXbM- zI)ysSV`Y!}KIaB}mXq=MtzEr#`tBNYJQG)FXje6Of)m#O;bD33kfidloJ1e{{b@O85OC&K{d_m|?#Afi^J8l7`%)2f-nq z1>AS8J=ZV7UJbIzqcal>^0Whf@Kh9$vuGCqT)Tkgv%zqG zuLm@c^zxC4R3^x2E@Q82BN@=e1Mq=PB0_cgj$bUtylTHlJ#GT zmvpCM(!*HumL@2bE)Px6*C z1FEY7+3_}lyh&8_^es=KW=x~g0~uU5_25ESUL__!OUwR(zHUs99!g5om`9T(@3ljq z>|}Yi|5Jw^OgVeYdi?%0M-K8~HqaFg@^tqkn{8aKYeC)a!T9(H?++b1MYom5wv{uW z_r5>>zDN~)m#*=n6`YzfjmFOKJaz7eq}ubIG=>z*>rA_J-+p2RInQ3}4tmS?R^?5~ z?+75X14kT42+k`NJqUU$3|^g+k;8~WZq3XuPFK`A?&OFA2Bvr?SB4jXW5Cch_NEP8 z7{~`IzG;|Q+jPo6nf}B}2l(8~u3f$iOd~h*1w*a{gHI)Y06+)D2Rp;lcl@)S_HG~k zsLdwY5}u>C3l_I)!HTeYKL+*Nr4N2CMRTfD_#}U*R%u-f)fT!b;ow`|>RtkRp_jrZg4QJSna%kN=`5 z=_6zJsVD%+{@>$$a;n(?_!;-_bN`)tD@My8l}{5)4u6V;<{A^Gdh^o15*19@b&z7) zX_&=#rp=45hvo_Xfg-yO(Agb-MB&i|zH*Kmoh{4Ijus60dP&v=r~xv`PrtB=S2K!n zV0!%^|4^c4%>_~8-_l5MDnpk{A4=*Y=&zc7yZbY5U-uT6n4%q za-UiG3OJ}nU^jApd!>AGur79yFDIXa3`dP2h@>)G^6-|+NWfo;R>ZI6d@^4))=tz7 zPasT;$|UsVW_IIJyXVfF)ysm_EX)rqS7*LR2_@CdZn>@Y=N;LY2n$1(RXOQk7;S? z=i^RPWp>;UsuR@u6Ekwdc*(*fR!b?K3B1J01E~_C2Dh+!uweG8%1Yyi1%K3b08JAf zB?#ZGn%)Nu#{qzI3}-t7;2l7ACBky`)?x+-Qo zs`IK5bOXorz1(^&#nM?L7gD~>YpuEj6wftJ7vYa@qlprIt%NG=*P}k|U;|XJC-9}I zT19gi+J>LW9bWi$NWjm>lFwcbHE26>sKS(04JeL~O7o;;d=&PONBQKkKijJ-C+H5P z9j^^9Z+x?c1tctYzx`>*C?vH8XpTis?mJ!;zPD1LuF2;aGva7ppHbVr#I%(gWYhQr z#E=!6h3x=?tq;}-r&4O*c$*Q%!UN5G)(!giaXBm}kRO#Ye|F3!l7}HH46V(W{xgn~ zHdBr<+hZKu%l2=;_w01??9SmRuFbkDZ&iq40d0fW7@BiM)K;TO zrpbYG4-3gGI6N0V`EjlYd15+hB5xnK%Y@QQ64!VxPK>XEqbs+O>&$EZL2D4 zd%2Gh1i_e%jAno2agzqV!5_~31|Yo4HhXs&jLh`%3n~kK(TXxO9XN*DH5c`zJ;CI} zFBsV@N-ZOYGC3;d8=d`a02_L&dM&7n(ptx@q)c$?n10}!E_@Y-7ewe_w)hlY)F$&dyV_LRng)6jO zRI1lcJ)2Wm6)K_KDDe$;ayW_*VhfNa2z_J^pnay2aff4|trNlZgpnxnQ#$!%h63J% zAQA0<{mIUWQ{hQ*v!YGbQ%=Z9_QxbvYKjxIPvs`bq&ntM>%OU{2XL2e zquY07-&@<8V699JAX%?^qBX;DK2Y1vPO>=%Ad3Wuye5y~WwtRm_}uUzViKrpYJYjd zZhX|-bH{7ThLR?_V2TG#(n{M6&C}c{lAnd2>d*n&;Lm}pxdJcn${iald84txXH>ds zp7=&WxV8PE$A}e|T85nCA2r{z=MzHILc&OcYApiBjG((eg{*oXAM`1lDK{rnp1(cO zahjds0}pEDKuu+)2%$wBu}1J2{Y4TE^B)e&2X`#s4TXa-Fo4%(liJ0&^kH z`@WRQSBc^YJZV}Oo-Fl5wkinDb^^;%J8+z@A&E8HJ=hcz$qpqz+g%CFqd=H5W#zDp z+R={vv*CBaq~qu|=$HAR#v4RLCD=?aH#bjR)kg0fB3>*Sj~X}nV=Aj$7kYjq)c|NY z&E98ywYF&$KfIs_MMfe+{W^Q@+GKx~zTinKz$sD)cyqej#^vDPX*Iwyj!Xc|bV(6Q zc4`4s&mZ2`;Q^b++~x9}zk-zFM8j@lG(87?LB^I>9tx?eBzpj?m+|Y#ng>{%olGtq z_w6pNSKra0j{bkQfWvAnqNY{rT=C zeLNKiH6>5Mkvmft;z#DTTM5|_c#f~TV@}-x5d2EzDhY~BOBj8jAT08EZaR-}Aro}1 zQ?RSVdXYYahpSA3Ory_~xhFvVd9lepre#GX&P%?m>t&N34Pen@n&Ic~BhfhBeO?-6 zNIsjV|I&jsxwxRI zI!QxaDpwRn@6tH&(^Kddwr1Z1!5<1?0*`FZjeIUI;e2U8ar#=jOYTCppwWd7`hOHo zoKrc~Si8mau6@awY4)pndr|t0e*QDdXv z*i7IZ{=A5lbihE|2*_yRh<6|tA8`X6J5>zN6&4v;GZp_UIx3D1h|v`Bo{yOg-k{TX zJP^2wjO|=psGl8JKa8$5+U^(0d^#ZWSO%#nBrUt2>CgGR^D**_=Dnbc#09*p&4b4zIFT?FZ;RQafPlUFU`MKEG-b98mw81bm2Z<}2c z#xeP8F{jkEYf&@mv&;^@8FW0@W_Ovux_*G0z^_bCq7Lq`y4Gu@*$s)>j$5+y-}RG~ zG66Q2r#WJj?*!DU^v*|DP-j76AR%gOw(ZH3x-QJz^>NeMpJLMQ@}CMkw^eav!lk0J zuyb_tH6@$O-lf;q>o*pRsT9JWDPLjW$qG~H*9_%XP5C0k>`-d(>?7;5b5s&By0Jfj zHR43Ps+V`i6;0bYd7biZYXMQ7ccwrRzMQfYud-%VbHjYOxOcOl^kBA#WbCiavzt@o2Zu zhHXr)UFPLUpym&T(CD7i6-&IAK=p5R_vIn0YR1_TUh(?M3O)BdD&>3NvOAS9Y2N1Q z{KRac)K(~7KaR_M{wY*sMm)<%m?d(LfP-f%8lrhZsw_aLG!E}Qjz}qKjg?zdEDv52 z2l%q~qC@^MX>NW>vty;%+z&I@V-Sgye9|CxMYQhsA^QdH*e)zCf8S4$x_3+Fm;pYw zfGS=_XxsMK=TYSkBHn7DqWY4F9&UiD+L0n8$DyzXV6H59=ke+$bo{za+c?|-l*-TY zbpyaQiA6nd76{J0Y?_^EWi6qH8Au#`&zS#&YXrfoLb$&;Mn7i)LN)1K6cPTYmBrIyxmD7|!*eD)ztZP4FV2RZ|tK-)6m z@?;P0%(lZ?N|J1i`@X;nXy^05+fTC?KJ{ERp%5*hM9$ygH`Z^>JSAW-__K)S-U%9h zO?LX~N4#htYm1_}RUzzDe$s4O$-?ZyJU}HMek-2$4umF^ccvR7=17}aK29@f(Nc?< zb9uf|#RzLBlJS*Jgd5N}p9h3A5fM$`;{b&&$#_>`W~Z}Sr_hH@PP2zT)#U4%5PSol zolkzU6-@@V?y3Bym@PWKCKG;dm(3{h3)U=8#PlzP-$&VUt&^#de|bghH>)^vcD1qY z7wb52h9rL~qx=eLrS33+SBsSW^+jQolmOu|rqlXa)I?`;#o+g~f4$Yo4Wr8bl{xeA z@i|F;P$Az$E<#}j$FN4*R`EwqR$cLh@+69X&oz>1Ptk+6;7)V0MfXp8F^;`u0-WP}HmVaP9N>{vD;pR{ zi2a6}IjSLTa3Sv>Si`?2oA3VbBT=W=>m`-;IE zlxf7yuxiEnscD@l$4W2YS)ZSPLDSczLC@OLNwz0n_yASYNkLE zc=YwV6PDaJ05jatytdijSIf2pmH&yi{h4_&ooS0ERw!(}nDU8iruIVzy>NP~;KJ?3 z^H1&d^13r?Nbm>)qmb^Zlvq@H#G-bIJCTfT$6L#ITSNt3qJV_v6JUjJakYk_~&Z#0$OmgmH}{=}m0g z&1;F>Z4vxfiu;hvGr?OvQ$|vRO!*c_?C!#S2B$;Oy>(edczSts`FD@;(e(h>pld)V zU(c)6PPu7Bdw`L4Ue|z?Ix-&8;N!{bI2Dvx9vS)5E=@P z`Mi0F;h9=kSj3n7>a&;KBe!Wx?A{7CL@Y#+IEwV@TAK7%%MvfmiI5t?x* zvi0gW&K`fg6o!1C{5_+}mz{6ip6nn+>Kp}5Kn+k#PX{rDe0M5KZ1rBc9;K$Gr4B(^ zRyiV2W}PW{Na5U1jJ{=1b$nXT$wd*#>cy43e{@Da`TRvdk3D7Do*1Z=DC@u*$td7l zn|zj6Ih-OV3Q~c2t84i|^yh!rdH84L8MQA__tJiyw3Za%m5@ohB+v z%?dhj@uPFwp5wpjySA#NRi28)5E&=uwr+2X;k;!Gxo@X4+?pS8f|W-t%S)QxO377m zQdnEeV)(rJmx3{ctZ>sc2UC>xr8-&b{u>_+vR8 z6CcIT5<+F?O5fE*(rMY$Ka#>rP$gyhAjP{VRqVJ8|J*dXb?djxj?Eyjx`&h&-k1Bp zO?T4j$3aeUjL1cwE^S?jFU7$|uKC`Li7oHbSfKqLS-QMxSmk-2$| zz7aW?w2vpz+8`gLGU}&9z%AzbNoAowd)Rnt3VV*QH--+Q8}xsE0sH`9cPX^A;9|0G zgubSGg5h6?wQ`z?PpzCFJ=cRH^3s6iKp@}Qd z7wtCuUtcZfbOW=f_BkoF%+0ca_4%IlA<&Z5`=BFNJ+qoD6g2|m2=DgW4{pE{Q?-y7 zZ23xGrZn`Jj!-yHY&MtgSgorXKHSX5`;)5pI$@*{viWB2!RGmo+m$@X#JnGGj;r$3 z7qqscCoY^p^(-tljLrHfZnhnkUuqj+^IdczjWoUT!1;1oDe1E4#ROcufB8oHDO;US z72F!(Z1%f<9?c%7S(wzk%EKE;=>EF>$NGk(he8Aiwl0$eI6wca4Q^8MA~yx zwF|b(x6(%PQwKpyUAr;iJ0&tYN``Tl?1Q>D5Bv)1O8Z5EvB2;MjKHsZyMJJ^UNw*M zB1Kit=BA2cC;CB9)igZ0#me7{kNp_1_thiix?j7rxZ>TaK)zCv;tP-a>THuy>#g86 zah{)>!QtxXhSw2{4d7?8;m1PKu<{LN#8S=kE7(FbYR(ohlz!mr4}G|2I%$pKm{wWj zJ1{SEB01=oo4JHkHl)pZc>T`-&=kH7=YE9{fsE`9eeNb-&4V9~m5gSVZ)-flWCpa3 zBgvC5TJn#KI#H|hb-V9O(cg|OYkN@&@ljh&@tuL#u9nX?!a;}_pI;4mBp+OE+wi$` zj=vP~dt!h+gGX>ofX?$9+$3h?XvLa*b2hDbKX+2j%a{^nGk-XfP98lx8plCvW}sWW z=iu3Ts9WPS(fu_GyTj6;t+4k_AzfdGHk9|0FU#s-hBdZ~6CSvmwswMTBy2O#o92jhz=U@Y% zra!BWDkI{aJBzdPsQEFYq@Ecc(;G70Yvk{Ixpi!1wF=$9nrkq={T<~^rW3Oiwd~I5 zd1o&5hOJgUsqPiSq@H*PZ~u?Snj#1Jk+Q9DWO;Na>ZttX4!L;M>xdl@vYdxrLE}jy zBkn{NS<{SWz>QD!vENQMY;0+QrA!AjNH%Q_k1YGMu?0ezXJ+1y7&Y4(rwB-Y`yCfE zh@t)Es|=Rcv7Ar%*Xkdi8w(4I)r(2zeLQex1fBIinIp4W{ze6cZ;b{ba-V)c={4k7wIyf3B>xK= zFBIaOQp^11X-IoKCwoZLAZ&tOThh>GFhBZ^SaMj{e}(dWgeLKv@60DrwX-Zr@sfrh z1+A&2kUa6V{qT3V?Nyv#3?dnDUL7$05T@)q^@{L}K_ zxVajw@kv_bb~%_+%>q~kaO$_aI=e^Y2UI_)n?iY8?><0=S^wnJy&R^aZq`-VJ1lQA zfRT04Ou3i-WOh9A>ClS&W7FlYCX-#bk+e?Dly6uYv63x<`c*-%Imd5x`SLAOP-w76 z3wKs87M8rK?L1?u(+5yhqIB&@(-&OQNY#zYos?09zGa_4d_9GQxcydQS@EE8k@+nB zz5nz)G?mOH`S*6uh3#3kp9mW07?Pe)ss|aq${SV~)!!wafTk>Z9}{l~9!SI$ z`9D@*0gMPrC9CqQMf0XBzMR zpxdi^`}O=QL4kHEWZu_nvhK|v43(dCom^#SS-5qWo8K|WDYHG-Xn)qF=y!~LoY#we zi9;OPF6tm#ov?xdFt-)&&t(&JBiXZvNky%3BNtzoJ zy_#U_o_FdcEV6soBZgK3GT^Ws6Q65%|AuG_Pu#2Lox}8{*(~B+eIx%1-87v+WUjj>@BL&qoO~?s_byUq*-UDsu&mvuCc#r;X@=GUP{-C$_wO@iqx$KZM&S4AvIUbL{HsiXQ-47^XFM z&*^{-&)SwUMFw`3nA_G>+w9wSaHnGK-i)FhsCdG-P6hsi-hU$N0J*cYp-l5tJx!fY z8zxkB>!v6yLsQc9yXS~mql4Jd3KozAVh>v2IN~y{Cl&1djh1YiR!(G}@tx$%s-qQx zd~ELFiP_zRE8OQ-w>{$BqB;@wvCp{BI3?Bax8aa#ZpU8ZR0fvgJ#kuuRNhlgY&HYx zDDWTkLk_*H@s&Z}P*Eo8+|jWzXe=yIP*ijjHqHd$S^cvx&?sqAL3sHvbi`Xe@Jw_$Lng_o z`II7yLu9Eff*R$-mQ{_~3XZHN&{O?#L zzMoSz-jn7})}=aeCjr%WhN2tj6DnV4d^n+cFscp>1%BmW7mg1P#Hd7kk>-#8hcQz< z)S^oKg|9vRGw*OOo>%2!;`**g+cC2i_6-+3jxh~HWtHHk#Q3_G`LGL+eDz*rDjlA{ zL=u*^h(U04jd#uySI38Cq0j$p6UhoQ)9Bp2@_4IK)lht@lcW)^V~V1Ys7IiFzKIE| zVyt~Ra&9`-xH`}$2Y0wB2haFE;Rgd?OReH)N-AJDr&da1QiZCz)}yNU^Y!q4nq?y< zQ&1Sz!ACrObqs@OUL7@`b-jeJP>Q^WFEp_q{*YbuGU6 z9!Z-M@V`-#wev+~apI~^BG+_uWutTuvFkkfmCFjFpa z3@s4dpcS)V;9>2Av(Jv!U$PGZDMW5_57#E0GWHTMY!s2UwMHv;zHR^FYps%=B!g&B#k) zl?Hp#8PT3i3B(-{sFE7E#F}_IM>)Gkv_qi1#y5|zRYz(|@Wtm1DKX1X@ts!Udq9g% zWE%OC=U{g5O++Zj(*fU!`Uj|=a5L90MOACY-<21t#5~7|WL`tX^riof9Eky};vneA z@uZp7RpNPo{Q*knku>uIsE-{MY2`s29tnGzK3&vlQR;X-<>(eR*%45JW^ z3hQg9X89{Wg}wJ9G~$ONdUr|tu?LB^(P}}5{8P7{TUHI5xBnqsj!<7Ox3^G$j{Nez z2fJ`|?}KMFt6Bn|e&14|yOd_3RaMVG&p_D#bn}c_I$~t)_}1rU(UydXz7!j*d&qH1 z$koXHnNImSJRcx!BjQ;iMwMqmBQ!>ci>!l|c`;0XVVEE9e@JQWJ>h?z6276XtW3m> zm6XZQ5NoDvoYA3BLb z47J#Mwbhp8@g_sbACuObcDer{HN>&$B^FJ7y8upw_uy_U+WX$1rM=nz*stQIlx9yL z|N0_hSu}mQ%hkokM@c`f=6ctKX?)sYopTQ+LW%1eO*GzD?Z3zc2JjB&Oa5iahs*M= z_rs@SdL7Yx9}HI|u=nNau~p zbopi6_dDB7$EWYsFSNs$J7VI)kZr&zen|GBeOPkLNZ4feF(af8>F*RdES#zO3v!sl zL@92VrLCj|(n}B>p^mWy`he3(!H5s9W91Q+*=dh~GDmvU&h%2^xs~Z;y z3=Tsb%AzB`eWSF*g|9L3f9*WnBt6JoR+?6PD0873&-AXJfP zffj(aPyYs(d-S~kp!ilve2Y(K_)RJU<-1e9sWvguw>6`$fuw4{#CYw#;mONDa;H|! zM=j2;S{!#iY0W+*MB%w6e2zpvk1Sxicj0Acuh&1ZDVxGt@WwBfV$-H0E*c&e;Q*)V zDB18xr8dmy87T(0q}Pk*BQI|Cgk|zZMg=R*Ot(_l%l^PPNJ{hT*6yHcLCSp%yR}wRMIcc`62hPnW@+L*i#SzKlK3k zDXJ|WBdrR?Wu}xs>JoZ$2WwNE(Wnhw?J#*tY7pkNYMed)vpmRHQr5WO1dt!FH((`` z0IfGrCkE<cI^aO3^56<$xs(%#^oFpGC8~9b@LE%{+LbU>@E?+oRYS(IY&egU2Y^*1 z#P_1bk^c#6H(b1Q3{VBR=^)ezW*|E7BUmY5OycXT@~d}6d5qraVT8)wgee{lgi1fS z$P*gyEx=&)P3)J0mu|5IJ+`y&&J9LldpvoevTZfst^WyNR1(v(?(OKR3#Lr)$&&?f z80-3>D7A|-!U#WHO}sh|6$8hbT*574~WI58AW z?mgddspm7E&TYcr0&9`TGE3dspx2kIy-D;TI?~^l7$qQB8s{mFmTFsXA!#otFY(B7 z^`Zgf*P*Bq#1sXsAG3SDTp-M8nE`%}UwPW-axnBylnjs(V6cl9Zwae?9gBL{4CxP` zbU)o7B~{J3Kr#o{z2N^Z;T$lqgF7YwRmr2B_Qs?gFU`V1vOYXQ#V8nb#uLr%L5aWt zxpRmojUGbxQsvs)zOv#7&Hc!5t2}}5pS2-MKWaQCf}@up16ZoyKU@_hvOHh|NNh-< zw7~+=t2hlGm_Nyn8XJOt*IlpCi-G3$dqEz#o_#X$t!sC8(;-{2mlhL%Y@*EfTiB&y z<>Lxf?6qHW3gP68{Wuime0;zM26{|P2L9b*E{A?0(F5?5?(W8nRsUZ;<0`Q!xq}%@ zVzNLVe$Oq>WnD7=-0G)wUm0VCFNcK>6F(+r^ngd5Rgd+~u6XFKra#PcoOvK`;5NZ% znSU2PvE!T1*%7oVegqt5#pnHaw$5AN_6siJ^Ikv%CoondkimEN01Z;0Z9!og&U5jo zzZHS#VIx+kjs!l~fe}%`fZ0N55@iT!-;g(xrn(ZKe(J>LlL5dcD6xQ)&8AAUqyOlz zAe_oD_EYjMI4eqEjTN1|Kr9bm_hl-OJ_BYPA$@*qY@#}2$RL3I%&t32fJ1u@ zlD+&$mBl{Q6cddoHsv1!h6X#mV1)ho4hRecbQ;dn@eURx8ae)nfb++@0zz4m&=?$< zVHJCBm~u$>N?)is2nG7zeNo=8+A9!18T5QGoB-OL6S~B^(l9l`-+zKxEOjNl9!u`_ z!rpu}Sm<5nl;vVd@BIBI=ZQ6Cz0+a?pO-&zQW94GzCiU>?85pf-~4FfIPlCgcp>!1 z^U>?*{kwUevWJN+HD9Oa)2H2)F?AM`I3xPyZ&bQGOTFrTo${ndYpgrNFZ-`3-BYZX zF6zCBmiSo!Xt+T$R8xNsS8xN#vgOJ5352Or0+**e&5^jr59lKqG!A$L_k;XV_2zhP zqOm4);X7N?y#u*@zb@V0o!?qo>if$}i#3+lQ>Jsw-SB!QsSOZ6+~%1Rs*x}8_~Vmo zRq@~C9YOXD`n?|wjy|#^5fT!JL68{Zev7IKWbs|VPG?#IM*=rck#i%tX4*tPyn9TG zbMwP9Ydu-*BjHraFJ&}Cr_HJh0wTBhaA7@z{`HCR_k+z=aPae08>&+VKHZnhStlUz zr2HUpbg~`OFIen4?@)tIN!Ba$eN`(nF_hUzr7)6`Y!>I8ylU16IU8|n$z7h^YqWR2 z8q#>qxizu;*x$T`Cb^{we%9>}(Rkshm_4X`V??h86DY$NA6?~BIGZczT<#Y*rXJlI z*Zevl@I4e+!s@$fVfuPZy$V$41%j7HQf<0MQr)gZe~z;~N%E?UY&H%bnY8nv)hxMd zs1fyRAugwdf1(}?dfs^O1X}fOsOj$__ZGJ7J8|W-(MVucl-Xjjs2QWuv|<2=O9lru z#w`9JeVD|zn!}@a#%~Tdg0ixu2MIb+vMs8diUYfsK9}S11kd;W+w?)`xQygyJdxk{ z?b*J9c)rM4{aFy)zbzdA#1Q&B)EEm;F$fXz8@#_H`~MK`W?K{Cj%Z)hDq84FZwLph{n(s~dWI#X6 z9!UqqvHK;a?v(-`rI?1wKjuh&ANDL_K0L zmw*kI4mXAj)G({8zm0SZMDmjt{Pm}v5K{qy!g@#UgpaO?$|mHJBv`V4w_ifKH{_R` zs(noL`+p>H*+0oa)Ts6DWI~(vqX}f86dp@dN?2T@=-)6*!HGTw4I4?4n8@wO*fISJ zHbLPjOYSE*I>#^LVMc9j1oS}EgPVz{wRHKS}H;V0aO*y zH(CB@S&rF+uU;n000d3`!;VEULoITYvuG=?Dsy7#j%4a0yCj}YjXN- zJ_X04Q5mAoy7GDL5XnuL^`2JwAXL$H$nGMY%V#PjVZM5v&hdDF*ZoRFvF5_nOZ*XA zfs{eMd|di;McYc>6924_2x7!oWHLSPZ3s;j+82`2h3UN4{_w&!*_JL+^9M3aN(Lvi zN1gTo!DEX7-U8gYZhP2wmkS-wjJcv2=lwpw)6f{?TM3q&^yO_P)*sD#&aH2GF5Kfb zxk8mS*7N&a<*x07lb!p|1byr(n=<~Jx+BQ=$$5U#M>TDVte%abfKQ4$orU^u`;~fu zED<}8f@7o~K#pWgdJ~x|5~WAvpclRhk{?SFz}%NJ=a$j#nW@S@XFQUm#qag zThuygv2kK&nJq`z`g_bx=>EE`N$l6b!C=L1DyV23#ASE=uxgiLNc?m1yEh-^TrbaF z%@$TEi)@(;jNbZI0 zc_R<>d4gVW4@dJG*E*4h4)4bHMA-VD!@tf<_aiOrUMR{6y-lp^2 z-0+^u@>FLh>KN#igz@x+s^&kyWSe|SG=$0%5Tq0t6K#s4cNI{mUW<|-T-cNSEMIj8 z7sSqxWqzBrM|p02S-OwL{4xfyZ{Y%=t_?k9(5zhNGoB-DQdQ%=o)(Gr_AK1w+#DzM z+@ytp%_rRj7K2A-XCbS~m-(%JZ-+$-?kBFE^mDGwwAlNQ`D9+H-#<3Kev$I>Bo{NV zxZ*T(A`|y0L2(@=TV}dbhh(}JzOoyN8ipF(zNWL6K>2_-F4{@ze{-&*@bl6Hpk8d` zKK1zD*Dc~(0}m@qEd0q`FLm0xq!GlXT<;c8wn^Y$o;PIF@QtA0AR+$zw^hap!!ec2mX|AjoE6~L=hhj}tL z=m8@{Mg`K=FH`8EVy`M=X#Ztmqs5uaQr`_!ZgOIhYTE4%NT>tlyrLeW%f{`_p?a;00Yf}W?NhaSzuAOU{-T~2?3 zda)LLZVkiik&~ls&cTRkuBpJ;!I1e|o|oR4mYJ3a{s@fZQP9*Xl~*4Ruubx$FDS}e zS=yI(*Qk6Q7>ZOav#J{^V}Q0WMU~!1|2KVyU#Mfzb3qIoG$e>>+FLPd#sg4qvT2Qx zK-YbS}xM2ZQE#fpzsaJnpd6!*-Bb?v$Efl(VBI58ROEh zjB{x9+7^y?p*EB}mM|~>NX}W7>$+k6(7hw`=at*a7W_fBZyH_;lX&*e(_6}4rP+$> zbry*DpIlFB>A-z@_yq7H zwP(q0$cHqgi*sVk85T1pS8gUuRbUkJ3I{*a2=vn_49hf&v5dh-XK@XtvkbQ$Yv|Qr z#4QwfWD+bDkr_#bgf&DotO5>VKW4|<5u$d%EM`I*q4J3CO6d=$=r|H-H;<;^u$ zz4sNx@F3+7o;jTRM;Tw$#B$fNkrdmk+JKD}+ng50g12;1oxYp4^~L2JTOqV`=jHfY4;bro1_NN*3qq>-7EkV>q@X+x-OVSig` z@Btx#16wpI;u;bxX3_wi{}sqs;9D(xM9}79I~Z?Sy}<4rgV@6VZh|oom3&hH=06|X z)bAgN=X?qV4RbS5 z3-))PFI$hIf-wYX$R&~K!YHwp6&|os2jjEY{mEh=WS{`-CJxUvB_)wj{w(#UMLMD! zE(vv1=E#kY2pbGkK}l@Rg=FUQO}nbFr?RHTk=7<|0`e`>KMRJxGQG;L7MQY-6DH~Cs144}8U!gaXz&wrI2ClM4Hj_6 zgB0-ZNFmEXFzYTFtP3tMhr#JNR_zC->vx_}=%u zoC7WVf{(jxh{f8iL7XBdP7QbV(9kaRameaLV*PDum~-yix0`m`@^&RnhQDbjr%Ylj z`msJX0h6SDdI(UCW?~^fm5mg7@sEw^vF*cB%`R+9RN4J@!kUZ)m3~STUA|_0n}bF9PY0syo~K~4OI?|jkQiBbLo4S&POR3Fv=e|oL*Az_nGGEO(Ppb0A6QF39r^^R*RdRHH6;CY!a zz1%hKAXOyZDYuU8MU^I!LPc#w5jc8Z%+9 zGsSdwCXBhIL3d&Yb?4#Irl~dsj|iq3H;6b2PXGhHz^zwIThA6{AGs6xPza&6Kqmql zLOkDOPs#OV@YNlcxT0sGfj@`efLLZ164G0UIpUCwC=X!oM`-5$j}HJiLVV%xSHTB5 z2v)p9{@eaGsi7{I+ad+qriXc-7Ki$|P`rQ}xBC}o+pa3}%^er3`)PS4(YhSB52yU| zqZ#nE{N!0LCjq`Q`kMUdW1U$)a?5xPeoC!==u(EBua5JTg;$wVk5AFAL6l#)s8)#F zhUK-6vvSEaReHuLnTH$qoyKqRt05Kskc5S=@=~6!?(9Lgm(n5sq3Pksvp=<$H#1!s z9RfnNlyUv8zi;MuNy(ZSJ>SP~PWMgK&)@l-7ol>$OoG_B{T9qe6xmKtWQjnLbqV&U zQR(APXsf{+Z|LhX(0>~8a?o^Ng#ew94&rEF{Vt~`j!v;V7H<*v6HyRf7H%gh1Tm8! zlf=qaHWpwGV;%=HL|ABiwG^WWcJX7}OyH`4ps+zUD6p_3(U;5~m>AL^e%K?Q0;i&0 z4qn?P>2ZjKmFH@Jh^X10^R`B>dwO`kL$L0*oO_1Mi1>aySg?z1MCC;5P*LWy zbUXY|L5BwUkBhOO(UWGw*Y>@akK!E+h4m=YC>+DNJ*mAp}l>=0C~NWpygS8%E?T73i|-{Jf1@R{JUU{ z{{7;&l(ogG1PT&}6`+zVVXW&|`sIgZhql_g-xxA&K+0(I1CBeJn6LL0&Zni3FHXZS zRWBwT#h;eS6!TLtf%{{T$*z;LPxe-08Tqa~z09~02~~j$wd)sx)^S!%yf<&VUlwPR zB4tZLN1|WhAQ|_^<<>;!VGvcTd4wAyWwT}4ynQ#Ou8}ryIV`F%^(7QB*01B*N^7I% z>s_ihD6-2vt=Qrv^P;3US2VbP^vLdxN-C~Xo{e(sLP$SdvFgy#*C)-^Ga+YSKtm4N zypUqIxaV|rv%fQ-n)~pxK43}g^d#1)q6`#c(cIo6Ini35R~VxU{X`AJ1zsSQneV{D z|7aF#UPg8XNz(+?kO9hGo3}XEBpn6&FqfcOQPHzuCu%_L@Idj8G;h(VnmkEvcSlRt zM*pcuG|K+$*P-!|#053s`s0#lrnnGbCls7u>MXyvQbDw~+xr=>-e6!s`ZbbMK8iM4 z4uZ1L&Q{R&$vLu2(Nsv*?<$rS!^Md&*m9jXGNtY| zK&I9|-Oc}9&;FmvMk^DBHGU8iN{Izy?s1?S#*Y+OK9J0IFY%7Zx(!`+|7PL$P;Sdr zDuK4atieTIM@Ls-ut&WVFR>!RUY06doWib&qC`9_seZG_Wy96|%xrx1X5W93qB#07 zCmJ%xx_|o zbK`vpTQ0t?NuAc*7dlCH6L-&ry`1+ehBi*!ryGq0^{exj1BX)U=dDfkO6dmE!$K+X z%>yLZC9NQYh&u-|N$MP6qq4=ogRn_D2J=$y(A*ZskykIRK?uvg`E6*tXD5r|Ggeut zl-8IJ2rvw0?Xj74c?I%2*%X+^ge7xiK#U9`d;Nr{bA3pMDwIXWkDQ(vxeK2moVIr@ zl#4Vokp+iw*Xk{c6YBGrcj%H9D3Wh@qO=@v|L`QL$HL%vRR_jub~3uL^{2_wDMJ2H zDfB=0&yG){##y053=a7fRjLg zqzRHl7!GG)76aXw_7`Oe)&++D#_k>u#4Jv%`AaNjw8lZFEDd2+E`{?(^w49<&Gr192}azV>)h#&z#p>f#jdJ`5c>QmE&6~B$P^BUA{PseVbop|$-)p2O<1$AzxcneXS&h$8G=-cb}7!H!o)3xY$`!HgTMwL^O&gC{dr}5Q&kx-aHkI~7 zl|;`c&+erkj$2k9$nEM(%C~5%vyIOy2E`!EjD{r8sh;g&T}m|~v8c9MsAti>d!vai z6oiiq2xrP5()hX+wgMplKvX7jkHTYfGx*G50yRsvR8WqGHBD4XA)PbewCb5gZA3qN zc(sIC0?nY8hQ}w!WrO4Q+%In*L$Uhd!A_XKVp4H9=}*#tU^REHSHdj#q&)YbqzqEA zNPZK6s2#9Q10$eoBpKel7l;Bu~?Ae)1~*tW|Jrg#QWNT*2h*%?jtGM~nz zb1IcGD+&dJ9OvCGx7rSeJaE)(t8-U(t=XOuUNFR)zu}+r$B(BR8-JYN61PiT_GDUi zvAX|s))~m_+<$}U8@r;G{Ghz1buL9}{h}L<7XoGMzulOkb1uBu!bp(Mfn@?-#i-E_ z#s^dA=gs?9A1*n6<+!tAZu`zQ3K>a9&WY5u{BR69uyMAd^!Aw3q;`lLNap1*z%%fP z$}Z|#v93Irun`e0)sQa|7VNA#Z z<|la@B@Al?3GLBYZJpv+(vHO_uM$3@p-HYtCL$xt(GJTH(LF$8mi|GBb&=b4qs=^S zk3RL3+@zK3JAFfSTR-!k2{PJPCptp=Tpcw=og^WhbMlWqQ1&{;(vc_8)xWbd$2<~O zwhU;YaLza;s~_ukeqM)EB+}6X1M(N&j)a8I?J8#1PJWHKy*KYuT}WL2e3*W8)abQ8 zCmLT~RQFl;E$Fc5UO_&+W-h34yvH$9K%Iyo49$GQ@#K*72eq1oJdfGK6e&A13a6pu zL#ZH6E?%Z;0>R3yIX72NA4R^j)T6S_b`Bj6R=jPRxap#vGqHwgE&hz`!G8NZ_o~el z>DYmFyWD+Jc3w3>Zn);Yl{4dgETF@LyI$+v|wx&t1(gOX;Vx@;Mw@ z5pPY7l!Y`|$gbx5&o^g3>5Ux`dDvvO=%Mr7Qv4fK_SZb?J)y&?PsB~=^u5rZ$0rrW z12>_Z(?(YD_ay$Oydt6NEk-pJB>s=TwA4IyNf)R-agU@Np-Ex&&ux2l6u~QK;bgaV z$Ye=*I1J z;4&P~$z9dy;$(X^|0wgymo8C9Pus2d-1GO)&W%52&|{7)jjL~JUnjf?O;O$fm~Z$k zPH0ySI-;XRf^?BA{xSw;>5{UyUSaY%Xf6MZ-!WUfdx}#}(_kolGSw_>mXIY!lQ$xF zBv3~GqYTZmFGoXTc$-2=xXF2#jQVUt?)xSwSp$$wL8Y_$;JdU#M%X(obBSSO{q;`{ zerq%ruJY@AH68RyHGWq2a)jSa^A)kc0|aS{b0ewvMa?aUh$G)xipRNza^w z8!5lkdNjL7Cw*BtFJIC>bP!dvH`}V?sb3IL>>-THP5Z?1+TuCL_bX8Qw zQJ-knX-#@)3ZfD7bFMuGeb^%oSGUt^Y2x)Cd>UBq1M6H!%ai=bULX;KqsG7csT<*_ zQ6m?U8OL57{hH5KC1Lu)(b;*(VCfNsz1+ct7@vNfg&qCS=2rEZSVZ?p-j_j#oPoqQ zXqm1hUdc{Frft2*$iUn7Es;5%SR<{(y1^YX2;?Qi)J6?6F&;+_CXoQXGhqJ;lAW{B zk-%2|?WLQ*Ih?cmO;3nDlA{yE7|r97j>wPz#xZ}ZVlzg|< z5e-vIn3h}!+oFZZwlyS8pudhX`OL0lXaCG&?r8g0I*UM^CLh%jC(~G?KhyqQ_Lqrw z+x-p~6)pK}v#Ty1^G-{H7|8{xXPe{Y?FiS3e}#GMj1*1MD+^QJ0fLQnyr5$Iet#w= zYH#!v-=Egcc>JRh!fakdes=oUlpeVn8{dUF^K|yYMXsEwH`Y&dE=Za0V694fX1eG~ zJk4X;%x7ED=)hqV$|LbzCI81$LTxljSpr(wT}J)!T8QN#eVii4WW(syY`%4!qflz& znW!>F+q^eBv`l_IXF!f?%5x$0x9#Zh)jdhQ(okd4GYxa$H1BHfCaMp~m)?+s&w3z2 z18D8&q-AmA?@7zbR+Y%ldvf-F25{q@l(G%|Wsy_usdvs=GC1 z^66sItf4rUw}oqajDY**6c~JS{BeuwmJUuT+-$%j2AcZ}tL%RygBmXi!vF7LjvdA)gEMGg=VSW7}j$TT$u=#y8H~ZdEO7 zlSVZhSQX0cG^-pBVk|R0F+pmd4jEy=6BsEtS>D|X8md`ur2Nrm;E8uk&TnzlZAuhTNbr`Y}+YvyN6w_N8L$6>neFKOewat-Bj3vR2c%9aKKg7phbCZ5j{uD+V^kaX$>phM<4`$KL`=40I;>Q&N^v0bp(? z(S{-s_gF2y0%B{@mp4<|!cRG8az4VEd&`uR>n&(Sqx5P z(;es^S58u=-l#|4i0#YAn>UQD8}~@s{-nV!z_%R>#EfopzoMq3gWs0umw*|W^M$~D z!(!#Ysi1Sm#VQVzb;HQr!3b4nF@ZCx-)PS2dOz92%LM2fX%g<4#gnVGw;^ft-Z#f&c;i8KMRTcHJ z0Ww|W5w4H=WE1yaeg)QVb5XWQZ36?m(XYEt9T?zv+i$+YpJ@mJ2WD#Tb z4CQZ4Z}{PIakkYzF3p#kD0JJ%?HN9*yk_CjjYA+D*SB+4eRF3&+hLbCDhtj8B6tt4 zOP5N42VGQYT+Vy-0&T~6xU(%?mgJvD=1$kGEw3@jg+5Vg2!AHQgCNsGk?_QtLX9Og ziAfJPbbgb14$&nU=&rU-6dxAPx!Ul0VY@soY@~Jbs4K17_7tOT7zkajs>d#07-A*c zb8=D4;NSFsLocn9gMx(BiU#NPO7JO(e^7`_4XZGaW8`15rM%VG^4jB} z=IG1Q78>0?_oR+Jx=Md!YoIBWtX~P!o85M3nr~QMTbYJ(6BTGXZ4R4*!&-JtEYMQ_ zpd_*$`~GY1yI$Rj&Tj^4aWpyF?`R(-XX%`>i^I*7C4onKAFvmc06;TsZ@DI)Te?E$ z8dTAf&C&T}C|`?nL&Ts$?uYQL$bG`a)>PF9C5M@L;qyk%qijr+$#yzU-8fR^}>Z1m`v zYPX(~fl@S6EWD!a*O}{VWB>ix0vs-N*JN@}BODqUS_TeyUTeB6)AQ&q~8B4;OMuP@$OirW8K0t??M&YgE!d zwNVGoX=Y!CR)!j+*^5rOW#&~I4ljh0UHZXch^p#f`@HgevxeAebS7oHVq`gd-?7Ur zTAKRBB1E=9CQNISOHc07L1%K_Lm_%MnR=4y5k1K3^M6uQo$yK>8nnavB^;v-%#2Ag zEx^qa_uB`+PJ-YCH*JeKVfM&BE3WB z**$ux|E?9J$akTF(nfm!mM0JiG&%`1DJ!VxT#?rA`iG+2@);B|9;X<5-*a)=9N0Uf zoe!KJw~89+iL9)UzZ$aYBAbP04=)j#uD?J64Fj;ek%~fRT6m)_8%JauNN2-rCaloI zzQxlLU%~T3xLNF~?8(UL;GpA(qR4C%gCA!0IZVv?)XuFlYAU*OC<$Y;a%E#XuHxs) zN$KKyS6!ngjJk^bg~4e;8;-`Yl^5Y# zEw)5P5Q0;9Y-y|n^GEj&`dB`ujQxogy2{4{DKqQyP)&^Np3UKmU9jG#gi@P1Qly28 zPiZ3c%O~rPFx?}1N8BSeeEo}|4#KixYEExmE1L2l^A+8jrtV}vKQ)AAA0dUZLez(+1js+H&8nipyUNPI6L=D5CZDFc`Z(LRCu z9+N~RI|iO?v($szcut;>Y>mbu{rpxl@0hJ^ikR%IYFHAN6{+N8h=A=D%kBS zWI5iK=8|$}M8ozC9?^HF?9X=EUMO=|q3yY~cTBHtrAQB4`!TFnR}OR4@|w)Sxj8uo zRYSr3H+cX5k82sk+~)uNDWhhFGT;0DLa6BP$f%uEP48)TQ29@IleR@ zE9)dZiV3hB*;fzhzy*QVbX`8>m?;zHvC>bwslX5C}p z`7TSqk*G=+4slc|BV<8A83UFsz|a%%))0%y#5t`Vp|k&aT}v9%hXjZ&Y(}w(74=p2 zAZAwSnZ=)U&lzTff9|V1%Y1GqE zD_%1IH+QyRQ0G5x-L>m;^A}J1}X1rI{Sp|Y8$|+)5EKbRgXIl7e|sMs-o1ZH~?B6%AFqJd9;cdErnrRw3->e5x=#dMl<1=g`90 ztDE)QJYSfeyb?0gF(8}ria|zKA?wGmq2~c6#Ng=rGEA{@RfoC@&?at9U?khyc*!8VfUi_yq@sM;*?P$D(}Eph@0ghJiW+R!4}9r^>T%W>G#E6**t zuTcKvsoLtKol#q78&|4y(R2rKYW?aw<*ugF4R@ZpXbQN3COLHYR;3TFnW~8T_as7O zMoT ztP3Q$@NRhI5&Kl*F()VnNtDzz3TJt)FYRkD1?t2MGFUbp4fsl2or0~z3~-ItJ01mU zV>hsb`DyexJ?Uv4!z6cN2t>%?&5{4VDgyXB0*DG-Z*N};--mbwhsG(vtJ>0EGgr$r zSGhc6hu_bxug^y>(jNsgvb&Ob+DI1av9+InwW~VX&6zS4&HmoyfHrHslC8vFt(lqj zyfpJ$cEG(77Jd{zcAE-}V7?WKBTf};oDJBMS1O z0x_n1zb8W)&;A7&crRUfEfC8$~l7^C!sXq{-nI*ri0Qa)OjgG z*<07OrSM{tdf(I^)4>D~$!w)|M~!2)?!4;Dpwpy)-@+BQxPU(t zzRLF~jx(MHCovs4HXQK$ph||P3@~sM1$2(jkkeKMF^8c@gqtb0*|h87Oksr?DXpn? zw$r^zU@Nski`0Xb*p`$`Mf4~pk2_DedV1zHrAJ4v*){D`B}R1j#mB2ga!M!ljkq1$ z(9m>D%cf8yK@!!!;{B%bwmZ708ngMah9D3$9CeUi3J)l=G3iLR4tfULhyL}d}*FL`PQ10Fwg8ea3EaZ+>3Zjb=`ph5D zXrdXF7PmHLK=BB@sksZ_xe0iSs&^NvR#S$L(S)Q1c!F=h-j0`DVhj!O(h8|#Enaxf zN;z1zs6i}znw0EV3x>+1nMwwN-XEP#hi$wY8_ZmEHJPM5-L_j;vn|5-cfi7V5jxJp zCNTa}ikRFxf>EXoKZ1)kg3k77ki=VNJkd2)94!|T>u&fl!M_r)3vxCYn3NsOd6MMK z_$*2$c5;Rkd7ALLQ)>)=jBlS-ZR~&M%K&nFVaFe-4d({gC0(mSe8UtAb?OBM8Zvu! z)rQdeTTA+%0}?MIzu`(ueCtA$_`7`qPTCBgHy)c3Sjn9st!w0b_w6M`&DWEl)SAIn z15>6xG9+7OA^=Qa10foa$8RE!WW7KU+Z;8KZD6tZ_?-TY3LDngGstsqTOxY=_I9fT zg)jZxb6bM`tl78m<1EUrdp5heJj6}bE%hjs-a}=R%PS^;wWL{`a+D{zQ-<7o{1<=r zWK?%tAx^n`_^nE4P?3VrO=IZ~whRHu-Td#_BB}pF%IatCDWNrp?Ks7;Vx z#1KTQlKaUKo6MZZ4+|Ljf*84_ScX7yorzd!i^dy_w-J<`^yg4w0_K&w#g~7yy)0z5 zlbD5e1`n$#ldauKYr1yWl1d$=Q#M?@q(?o(m~1P``hikVqbH?$@gF!4{VvIQMfwXH zex@WLqfC~h^znhp`?gyQnP^pQ#^sh?i&tzh2tM@h_Ky~dc(4Hmjuc~o72C#-qRiGu zw42}H)a2G>=F2$RcWr>;AKzy>BHy!h;UVT8wrovl=%zQ2l$Y5Qt*i$hK66@h>*&(5 z$V>Go)8XP~a+IB3B2H@P-I@+R7zXzxaSQu_9W`P<=GRYt&ySY(pN#YB=HNYSETB3P zFRf`1Q^qR%w$iMXXV4^8?bZG2WX$B}db5V}NXhiX^5;18-jQE=G`DUw747~HSj$z? z)t>BUKj3e#Ux6Cm}t3!X}Od^C6|__hNIu zBdu69vppRR-phO}UEGxAugRz-YEc5S`tJdfScF8iayB{d11!@EuIUs5mE{Z}+3vNe zUO6(50tB`3qIyi~*VLiG6X)J$z~UA#tbH_iA$0M?sCpj^|z?4xAmoVuyDx z&MmfcCd5_d=B-^l8}+r6q(>XQKC3r0NSs}BUKj0&Sl`RcQYy`&-)35%imIT~_Jd1a z3ls+OYyxeLli4v8Rd$Gic(>&Q5$6(Fl%ntCA2k6DO_D^tWOnN%+-AjL;e)bYdG2C? z?y+TSUw4!1E*_;Cbr}KdO*ErIJnAKgQjiF|ArxYL8h|c|Jhp;4__3i->N_S;t1%(C zxkKWK9K(n~bQ-XNcNk(e;jXGojHOgtt}a5??CZxW^Xp|aeUn35Ws~J2E>+Z0r<*GI zgjuwme_KXm;BIOSHCFX5_^wkJC5nb5^|xteCc;Q%`Kj7u&jZ+v_4!P$zsnol%iue5 zR@N6(S@p3JH<|>}aHZx?&z-I>@XZ71DFa?016zqrPS5oBba;>}Cnp-_TX3D>-o0m&{WEJGo)9cwt^YGBx)Ggic#ZSra z-<`l@QkvWZMVcm)^ocHWw(>`*MKVbi8rUmg;J&t|^KJZhN#aZCN}<@+XlGC=>MSU3 zuGj(=o~@{s-pLi-dk_$K&v>!Dh8~*)p%V%a#D30D>ll1%~ zkj6`#t}J(?xL8H$4<>|=NvZ?;o4*<_uD=BW!Iy%_c*$cr`if;3!>9TJT|zQQnA!Fw zTOYZHh9_dghG)o9*%5IjCRjJG+Wc13klK@xbz7tb@3#I0&;2vcyb@tYpNGdAvXuH_ z81wGX2*tIWSgmLE$1d4@8}p8r0wNF1_vS5jxi&Q9N^AF*6pxF3j`vLK%pR3*YSBmY z)ooM%aFo)!Y9-SSfIfXmBHjHMre&iaLAT4=?JK4~)gPr;>|_VPJ==;~Oa0w8)?qu( z%jt&PfmPd@?6k?N&sm%B>?7zhO&q6t+{mv>SE!4)d{X?P(zmoBPljmLxSn~#(@$$D zdF!4dR+v55zn+1hhtw=I^vB*=Qbg8ROX#$+^KRooY@(2)wV)tt@9{C0WWh!h+UG*x8%m z4jANM0omK%9W9tx6eY{C?$@^_as`PPb1!DWYqBc;QJ^;^U@X|1eE-&`?>6?Q|()hfSEQ5nOaDU(tX+VxDpC0?ryh zX`&hBo3}O(L8KKC7NwUqwqBWeUx4Z*vJy`uvhjK-7g(C4h%8Hq2@t!2C=yH>CYQE` zM@Ucq3$q6{Bp}BB7WxH7lXMA2?Lrhoo=P0)-_c}(a*X-pd=oMYDr3ZDd`9mt z%c30#2r_9aI;u<$GkN^~OcG)!f!z*iKsK#6OKt4f^iQOyPv4F4cxDMPNl-D5?K-1` z1B|6oWQ}`CFTiOb08yIgi5?)NTj)Sc-isDC%|<%#*)0jGHfXNCB{u}G33)ww>JGXI z8ncch+t5Ly$RWGJxjO37n(Qt9X$tx@Hp^5iisFiQU#S{oDLs5dbI=?r6VW_dV|(Vm z(M40WfA{tHNOVI>|MR;e9q4}|W5PfV8#p|CGL=UW!A5y)?gaxk9y!R|m7bh@u2n_v z1?t?cdK`LI8xDbC0d%amj-lv}+JeWzLdLV3m;UPwf~-pm40AqSo@0S68&Qs{@*4cP&a^rMh zkh>A8(0zg8q4Q_GsX-@@yn8D3X`RhyFo~&((ZQe^`tZtfv0ot!@`JX)prNV^ul`2# zD=LRIrSmCtt`wEk&8%Qf=)6D27nl-$B2mpQP0#WmjsQGL}KVJ zNl6hw7`jWPyQGzrMiA-lmTp8!T0u}m^#0F)_x`?bp6AVY@1QVz&faI&T5GTPhtFD1 zd}RpB$PNa0C~<}=tMez;0Rm)^Qc}nY-!@`RaVctCxt9=83Ecoqtb1_Oup(9-;5W)Z zF_Aa5)cXZr_5JdaqX;+Su6?Hypv|JcUL)9i7(y9+(456AOVfolj-&*%{0oDi zk>ky06RiY!f94A!7AdGD#{aMbakRT+`Tuwv2#_cLK@O{9T5mCLaI{YeS$mVx!yZbJ z@V~wBFc{$e%vob00m0Pj)Q^E&;AmHHwVkO{I7L@dDupTY1Rkycrnz*O-9*ws+ zmnM82@}Ap2w9ho9Ti-rht{kz^C(-C?HIs=AV~nYMeY5CFI2KKda7uA|le;s=Yn0== z*wud6+%byN<4XgsI=BRUlwPrELgm}tq$PgLqT~ZPuIf?<)s{Tp8x?w|Y-^lId&*RIO1!cVCg_GL;N zwiv%P)*loK2m1m*zyTdO+(c}!GXA152ku6|=z;((I+l2rW5%EuRoXDTZL^h6i2IhI zVX_m}hqAtnzNpZ!4h3wG&m*9hO*d>Q-T=$k2k{%K%MS%RdLI1NjW?Q{NRl1TO;J@6 z6Kz_SXzabQ?qdf=v6aUj^(|_dN9ST?L(W=#>!}6N>-8}Vz@5kzZ8MlN+`Z#i#&oPA zdB>&V5QVQ2TjP*GW+i@h>)oiJt4XO`rI6rdp;S@Jr0_wn>I%1=V~^83>p_HKe(%Odl4kH=0P+Z$6$~ z(mCRnbVG8yxJbf$#4V%WtB+a2MY#BQbUfP!TNvxtoP6HLyx!uaG>V@> z-!-xSW@@^6=))iNdS15pGxJLVLwU75{qA%Q6FJdi~w#v-yG zNGT9N@4>0T&MS-}THXZ-37ZL7WGxhzX~)HQduU1zw4RN`XuYf(=$PVr3H4oTmv$T- z8;CNJINs}A@1dgees4E1p+K#!I9Reo`~tmaSE2eU9U7o{?=hae6zCmIVr*YBDlpH2 z1!Mb!P!fsQkB@LnEsKlZVFl<-B?Fl&4PZe)CtQjI!16%@i8;%n=t!W#oqnbROrsYb!IC0jl9G2)m!nHo7L+ry{6yvgx#wS zD;zJlwIUD<1#bg;R5cV(ZSz@~+~AF<#qntwfSxb6e#!y*5x(y+(0OO;KhsVozBVOq z0c`KsQfbwhuB!S*e^#{Z%2SipuYjB#b6;{wuJ!Pj_ub7yzKVV8!US>Iv){j8emfoN z_peFMl4&WYYr69}m(rKs@@>&n<$6X{!!M6tYI6K@&PtE1H^=Lq(vRUJJJ~oIK&qm2 zKNyBiR|`ye`0^W7-+%r2=iQev-n(_q=mXvj&4J|3{`nJMN&32&`_yO*jSvnCyD&HK z0!q3aOuzxLWg?J_W;eepfqqG51$0-mm9UYHFMkoV3xz1j-lN)M3_@xYXLJS0psvG5 zG;rTsAj&au8pwa3Mu2+(nhh2iMe3`GPo3mR7I!3C6{{`NidS|+w15mu`1VhuYrb}$ zv+gS&eRkE(@me(8l+f#6`6FJUJ>sqe^M3P{^4Sw4qf+-ngw%t82eJisK&rOPrSvOd zV7}G&oTN~axkp^>O7Q1*HOIu9m}2(+^cpA{g?LVU?)uXixO?+O&4J0%WkQL#7akU4 zWR8p34k>V%p~FGB*uAdDEt%? z-@D?tF#$k@@`Vv9xfLy-@wMtQ?~}x)V*vXRI5oeq>tq|2Y(u=b!@F-+G!Z8#6QC&- zm`Id^4Q9fZ-o(g{_2xo<28*#!TCp(yg#mw`)-0A%MH|jf2&jE1h`|zF{(x8aqO$pK zubfSyAAMS06|wiTdbjBAvDSCw=4?>TM^|@LTOr|gB}(HBbs>V%-J{UvaRT z7u6YKh%@`mCPIl|@xrm((&8|)wUd@ECH!5Juh{%CFmmBoGNd_>xab3g5F_82$=ZV- z7JegFhQN};MK#l&y`QE)qe$ze*cZYd7e4_z03>-{{YiHZ@~powCYXp-+Z6(ejWlnI zys4jONo(gP`_^3F!mm3O{l0W6=Ox=F6<24}bl2E>tOlRF*|lHSdtLavpe3^3B^BL~ z=VW4Noay6hlRIT;Rg!XFvfnU6boBo3jMhV=;Li{K2&*yP0WvFFlKrx)(@mS>Kw{h| zO4X36MdH1ixwXe$eQS+5+73go@jVyk%GG)E^{B3fQ^>@P|LAGS>*166ImZt>KH5h@ z1jcM)UY_K=Ny97qg}G{}aT11Q67n|28=k)ojlG+Qg`aeORAb(FnLHu3D9=SwKX-if zTHI-0x_s37)3mcMI1y_F#@M22CdyKmhXo!qVE6)sFw39;mKW+V(z1<S#JaR@5IutYF1 za?_-RbhuP|Qb{X--o~r=F3k20j4H4_Ago}6LTM`ij%>E|L_9O1yu0|AL9S+Z>D~B- zY+0;uZJoQY%kW^y*!n%TmXWMq;#tI^*6(+;`0L$S`vFbDP=2`>I0O@9{3}$>OD^- z$+{-3sgGHu*FwQq)&4DQaxL$jnXu)xm>bzorjuN6tJ%cujz3RBG5lI1_`BqNlKHODk4 z#B2j_qI@Nku7Ken#OVOi$HtcVjMnb-&5P@545!!PjMJ*X{XI>t!Gu5=RgUc zA@dnG0kzfLZ~m{-CmLho*Yt2UO?T77_D+|wnZJwqrw-HY9ebqI(f;L@W2W?F?O+vS zbjp1RI~{LY+Kg&F_u!rd@42Z*=ZXp<`J%Kfvd7+8LNon*7Ow`z6_S%s+xz`?Gixg| z2IIVmMf%a~_RhnW+>icVGhunXh+XzhJ~iZaH>1~){-=*G?3Z$d~(Z^=V* z5D0c$lixqk2xFeQI4yeVdw@lY@w9u17(T$|$pQM4J#e%P5b|WOvBPgAzC8bxpwBdj zOveq1d6mrRr(9oDkW01lDUTtO5tN&(OSNe(G~$OzZ*A3ADuC!+)+Thxbdy&NN7Qbt88Urtu!(> zY7P%|`Prqz8XmSK6ZCMV2NYyWjo~SP1&4nflB@Z3HafkmYEveaN;gc|&9_bU%HpL@ zs)Kbtpm&%C;QLTmKG-$SwB4rdWyRHhcuKf2E~-MJlUTQlesXfx7YGs;YuC~#P3<1; zhW0hAaSpw_1&_rB8|4$RbFi@_F|*2xd=sqW3hhxR2F?gUjWKG!_|Fp$P9spwb#!JF-vf z6rqL0!rz>=VU@zAU*Z(PbP0?&ijgFUk-y@sL{jEFfj|w}j1ga%7*`YduO9+sSDG3U z>ADm6YdjImKml7Gbu4u?Uq3(_tVJOrD@AD)P{MR1BH&#R05X!|IF_=K8vmD@gn6nM z4mOCCpyh#N4P=aYU;G3T9SwbV#`xX$sSe5F%~SX;BxILe9GqM z-7Non6OOi(9Qw3bH}&n~omATXWcsf*)oVk_Es~@2#=EjNM-~R4kPU1(fW8#5au$X+ znhOXFdcHdRX3am}wsZ7t*v7qZ_0;>RSFcU(2Zh9h$JIj{n>EK-l3`#DWyevh1C6ek zp8+_|;5$Gk1~f1;o!_TL6TeWf%1SH3!?M2GVvxTC{zfswteb9qL z=dV3SYbC7dI3=%sYB4;o_ovnrHMCDVIo$*U*;tI)3=B*k1ou{yAaU}UWMuR@`Uvfe?_` zs2t!t>!Da6uVp3(r6nU9BvW`|p`MBeD3wu3;h4^oWT$RW>>3`k0+2JEuH~jidAvUo z>0bPztyek5(B&CV#P0gZi8U?zV;j8OsPPl@DF7M^LgKy7sqq@4of(mlK=% zYKUyk?QAV^7RC8#-5z)~zba5V?Dpq|nx_3j=eBQmGtXLLcIz7T9Jxju^fDH4RVx5#Uie- z1hZgdRU^l-$T0eKh^H&6ggiw@JGXfdLla7rm0?jO)!pTGWgj*siz_}~E9^HJjmh=q zsMIcJ#+ev%NJ@we!$yMc2Z)OOkU(b45bm!R5%TomRRxT^8J5At##d8UJYFQqK+!<+ zds1+iZ607YaAQYW;qrwL4)fJk>lF_N*+|m5de(L(Pg}oV5~Mp2KCJ&SsPuBd#$4~d z<;}=IsaUwHcf96SZ7_cu+X`Mw7z5cL+hwyI=n(THvI+FowFj3ku#ypKH_38K#RlIF z_m7;FkbUVSLsLU(-pxYV4Gjp65~KMY$;Lk~wHEPW)Jb2x3Pa>Wx%^*xVTKTVt zMZHM%%HG|NwO!h!%j0%hfwyBz-HQh13Cg%gbG&@W-`f_fH?E3A2Y|N$&x%&TY%0bg zx&!nTEJ@(c+{xQw=ss|8P~(J}nQ75I(-&Rr=G1!s`?Dm-yT*^+pYGai{<+V0G?cbr zY*X9G!$7yOFSuOur_n8ABy`OyW)KNhl$iYtAWYvw=H={clh@+e*>`%bz2g$JH8d8? zR0S!~xsiem@&eRzuiZM23K4%C^v8ApQWo zEPcVF1@9m!Ur_>I8i2!N&BKwEsw3%?@NuVtl~HY(F$(sD%LMst>vr)z<%7AcjmQBp@mEeyy~HxEl~j%mYPJk|PP)`qI0w1dI|yg)-{Xe` zfXOt`=VDM^0gJ(mqW*dcaD*8E7M%o%A1too72(DaNU%85ad7ZW;0-iz(BGp7EA@`D z$-U92S2XCX^>DOcB%Aa7JL)robXU4&ch9B_fzqMzp>hnWpkPsuhpF$;M!K-WOON^o zHMH@)bknf`C{h8H8X!0}3mIcvBq|d1i7&`nYQ>>e54cSBfi^O$x7+o|a)Xm@(v_!rHpjX>Nw?h(C9z-c+jfio;X4YwKA4RgUMUR+s zoA-xfF0WPCL>@|OL9xw`1j%g{oqnZK;C;*58DW$-%4`)*4%+aS?l%qYc8nYWCc1%_ zOAq`E0}T^PtXoH@wM9q_=X#}W&zV#bSq1Sr34c|NG@J`H?x|3qsa#UEOi4FNuiR82 zI+x%1IW2`RvnQOnI`5@V41X(Usk1{}7`$i?C6i3TnIFJxX9cYfq)6v+}||sv=|swfkWc zRvXU){e*d?#a|yQ;nK@gG7iP&TPkLB!zRFFO-4qjFU~%s?)8n3*JdksPF;{H$N71c z+`AMkp+Pb-m(r(Xcsc1*@n&&Yr8)G zv5UO>>(gkKg>&KH?|SmUnfc9Tk~I2gG(EjcemNu-L^ z>!MY@t}cY@(p!fCroD*kx}*JCPovmE{fZKPy%%6!@zjs^0zMEze}8y^hf z$~5hy*LpOKa~^2|>l*q{DlST!5Z757J+ryx<|5*{;p%>vHnha3M?3$8y|BOC!c;;l zc`ft%~H@lCQ zJ-b2U*FglK0AMw&QEf0=11NiNMO>uGf3F7$e3k+5l?yRKCpZBVr4cWDmW)T0mhn83 zy;v+-Rs0WUg%HuQc|Eaz1R4Wm>cB7TUbo5j`I53SH!aVT4%P?^3+TYzYpQx9`nz2# zSdRHu+oF5)^|`MarAms7ca6-D4ff{GH&$HB)f{BEBVkTj2XRL-aLwGOq%i3ovZ(Ld zmj^!tX4WW(Ve##~lVtMi8eNo71;VFDgp~YBG}PCVl;tfGjQo}yELS!6c_83O0;D>l zTG0KKIJxL{c~X5gC+TM%pIX41%0kJMg#6{R;ULb2U8bvG0Im%RKGgwbBdSG{o@E=QB ztaoQvmux#qmul_FAXb%o8V#(>@XX8WW=6Ew8u#XhhQ(_Y?)CjbjvpDW`bwk@Oc{TA zqP$<79uaXJh<5}TM!#ROn_PVvS@RGe0NaMaToN#90D=}gI!Q2XLn#$J`R#V_M><2z z(=ErFoJs{t!vbi%&`=YVaW_0HUPfaAo>dhAUOg7bY!_ zIjdiTcT{+X2FGg&>pliXG&uur7vqvy>fr+X^%#SyN0QrHPRsHZrql_XAy&dvP2~n_ ze)J{Ml_z}X07j$izf~%FT#-aZ@*_65_3`oFOXCU*eiMX+As zqUOY40rfpL*ZW_l+3Hbw$t*YSmjow-+l$tlGOp=3E55D!^3}PCL8#*-uFq!UZc%~C z{pHSajL5WqO7yM?Yr3Nub1zN&syy+Rh>1Vz+Z{7aJI+8fMz8(TPy3V)E^~IA3c3fR zvmWQ^)-Bb+F>57k{9)Z8HrQa}+o#ZNrauOjj*Qnh4VNF3pX&qtPTmJ~o4}~;-*uAP-ctRHY<4md zgfGAYzd?OC>VlHQbFg3HXwTo%DC{G`)sX^gHLa@x0&K4(i8taO4@Vj;Ch@wu9H8wQ zL;OS@7^}wflw7MWWPCl?J~sN8e?))Mo&O^jUrPASH0EjmD<$S1BKnK9rK9yAnictQ ztX*W(^D-6mtmSq=8mYVhZjnd4I9`=2x{9p#FY8A1spn^}@2_6fO)422V^ot|9o z&T8~P%5X!E*4^7U%EQvTw8%kY$A(iOFGe<{66keC>g_iN9tj73^}e$H7CYhbis|j= zMVbq(v*mMaNMamnum)h`_uZm)z(`(OWc zh_-Cft!8fH$m!e;_l+=LvQfi#vsDpnahW>~r?c=?Mm(ttNI@GzlP$KqK2APDY8AGo zrb)%WcUD4nvc>K6J)|y@#s{SZvS2w8i1QR^fdv2=H9I)b-_+oue85}*I3O+V(Z&D< zXbYnqwCm&FeHeZ_E$k`0IYA;h;BhKvtFd)@z8sVJ%}4dS2yH)Y!o95IM#Zl})f5}@83O}HEgG8WYVv#a|@V^Ot^+A9Y z865WCWE10T0Fy&X6srr!Y*#?_{Winn zzR>Z$WJ>a`AS4SWGbaq2SP>_X9dnh@Twc~sy;Ze`BE9665Rf5S4v%H!<%qBSx~Hu` zYCR70%P)Q$E?4U-t84i>2^t8^?Le|hP20%_AQ3^{dkl$U+T(K|O2yz^GUJ5bFHDUV z(v?l8%Uj7C`pNr81UC1L-zKc1Gp?tPVIa9l&6}TmK>wMze565PZZAJDqn@c{6Cb+$ z^?A;|J7C=@kZYg30TR$bj&b^luS86#9;(7diy(m+IlNMrA4LI7GaWge2d(nh?z!4^k3C1kx)S2cEoKqF+1uVZBY2nr3+* zBh+&B!Hig>Eood+^j^bo0~JW{n6#^(x8 zt1i(O-LCZ`3$QNbsKN|vz+4qc3w;stBpC!E-PCBSYMifu16`_n@Kzl87z2MDy%AOp1K z8i6f?InbN9UWXk-Uq{Z{@-b`#w1>-Y{K&siNug`bU}u zKZ(?jS93ki^O-b@uQT>+E{Hum`NQ;bTrh;v^`Ng} zRPgOPaqU`kN#NT7oJ<2k3GG4Ft&~qyYDNYH;5hOqIeS1cjf>rUoEzd>`FU-EGgv9F zDz~KNbnE!kP6V4+sM0#Rp8^b=je}c?z*_ z(+U|e<1T_!9PqN#0Yd(Aw{{?00n8cQq<&MMZ-l}yv7G=$+Vuuq=)~s=%$BJ%Tu9Jq zKd;QeFO`2s#PuUd1v915_Yx(0Q|71OUgo+cn;k!CL^9GSpWWXxqlTml;jA5-nfJOo zTnS^vrI@M7%8P>VuV5G7jm3$E5uhOd`COA`XGHRu z{tI7r*s#rp-<>IClFdddV0z(TR6?~I(xR)CT3p6wmtc%uwsm>?Oh=H;_lNtbhx62! z?YsWl*L65V)Ax=~Pc5TL;{o^5&CR-Q@4F)2&5jmRDY?M3H@{(jD@OoFrhWBT8wyZp z0CyIMc$7NNEg-^Xxg)~AaD8%PZ3ulf6e^^#v^KZqNvr?p+wF6M*`&|*+`-C0eZmut zr8GT)S65iYim-kY(fXOzty4pQBSk}c~qX>X4an&LzmT+#DJ!{;<_B1?dUX*k&T3aI20iA{Q?g(z=tu$@-+ukmruv5R-Hfsa5j@#Zs0Ta-1|q7~ z#ieTtPek5L2$6)y=U3$x^|$Kfw|8w-@oE?80F;{Gg20Z`cIdDoKBaM(_|TwK966hW zTiBf(6aeVBFKlsloFb$H5q!X}FFM+!e=icu{LqadS2Cmh-(zITksfN| zr<||x$`rMobhd4wQ#BDWTCPxofh28d)7i;eUN&KH>tQm zc~ikkX>oTU<+0t~cO94Fvoh{w{H3gCB%#=eV(}8;>t_MlkNPv9!))dt++k4uVCgSe zD46cN0uGVoJV-I-XJptDW0*j(NHR)4D%7`zp3kTgYC72Uy6a%}lOYY!c^)jds2?P0n?D><;(y7K{zvkan8qt&YI~li3QH`w2$-Wy4rf+vUeb!u9;=a#hBJDSUw8LSi?V z8Y1U0{`4s7UBsb+nWNt8ye@UYOQ!;14~mQNkpJt+{^xD~h9MA}2xDP^7XWJvSSAz( zn%gpq1QcF-tN2(muEKF)+e2hzWQdnxS1s+4D$$gLNYv%zJQTszuGB#5iKigy75JRI zA6^52|7(@k5v)8F%L2F(&q)gjIAST{GX6#*a%Od^mz|A0Re39$Zci!)y>?T8>T>Eh zp2IA9yZ5PeC%fDt+sVg=y`FTvEW+noP)S>g(V=*(A{X7Y|qJhZNVVWj6V`?;6*)g!PsYSti)?nNPE z@KfsY;V}Vs#(1>o!dG2}vtcn&nx7*FS69oDQ&b+j0r}6C#OUZc&m?ocsK+Cu6JiLvb6n;zHxVl%h~-c@+rLFAFj#*u zm2_js**M?4IEIUdPjky!f38aQsSsCgh&_7z@ev|Z-a;jl-r;WVos#}wSGr-r!T!yO z>v_XqJMiq@;Lg@QkN#&SBdNf#c>XV4cqDE3G*97gPGZ!lgwOU@U=xM?gl1T99;$VK z{S?<4@H9``*yCNT`@9sJ?wq@1lD;Ol8h9WHlXg}{jYFs$}{?%B#y5o;#!P=#0*4T^IC=`qz z0s6HY2hbYAVw+!z7BR95<#)UMtQkUkE!GL?-EZwRVU7b`dn>$=uDx&H4`i@z!QvCR z4A2?vM-H~hx+YmRV6Kz7*zk3J6!hm{xi{iL3y3Z|<#knwpxJ6%x2JKG&(lsxF6pF& zN0BCaf-ORy5;)@??#_-Li4=l^M^$b$D}xPi8};po=~VXM&p+)>Z~X%)ZS5@ra{TP4 z@P8l%{xO|e|6mi_RUN7nef%&s3woE=`xkNJtZn5ik}vG%tt{9O@jBC zG1&j+Tu5rpoD5o3-q8OheI&;)yPk^((@{gCqrqH=gp&TDkl=UM?`v;YCkH0by>v6! zLRtZDgQHr0$Kiwkgng{D| zR|8X2f!po>^W_4XkU?raiCF_ljv1)nsUxNC-J)Q@j-NQU?u@gRD=5fIw-Ul19IFT{ zEh_RbZl?Jo>Rl&Lkm@H^8&pP$m{o>G5W_;sRLANr@9RwI$< z76SCU7M_OJLku?)HQV)b_0c|_b|A;7Yp{1v!+*hS(6CmsLIU5HRA7IS=GU73^4dGma!JF46>X~vK4LyT zB4yKZVJ4Lg6BV_LW2=V?M$O0~w%S=I-bkLf*ZU3WCW(^XAB zYz*ve`RVL*_^>)&hb@Hf#f+VPHHj2J+eMRHlPAtms6yVpGv3Y%n^>=`jDv#(c>pd* z1hVJSHcPDly)J|#-`^!ganVM;*YnkSwm(%aI_|lH# zpoF>(Y|%&cu67`*a+KFFnvn{8MSajvdwvIENkrb_{uSc1-}eIKtGHAFws;6oBcT%) z8gI@#adF(wn+t!p!+#>;=fJgUW3^GFS>n{|HYzXJ@acfWfE(BrYJ*UE05U7 zymD0mz1aS=+F7|8{jRJdH~I_X+d|^90@ZNtH!BN3-0g5dxr|)BI9AvV$fg`F5b%$` z(T*1Dw|iSbWT}+I)^O{n+@P0n-ayk0#}xN|N|7JUX>qZ4>}dv;ISip61WSeo-3Bxs z26A-IdN1Q@2(tWBx-Mq|=r&8cu^a$lRVPpoUlT%Qn3Y9UDz9VuRlS48nK|zX1*T>} z`)XqSu$9=_A#Tw9@psyZ1kM;{T)WTxkJpmz_jbPYTC^9G32;@v*bRyyv%zOj3zVnN z)&;d=OYt@tSR;kGiD7`Xe6eH>Kz+bUN|1&E&^qu*OqKTk=X94}yQ4%_gnUF?S8J=8j5$X3ICS*htu^)vHc?jH z9;H7N{A=5g$__1@wxyNC;X>LO=1G zfEw+RYYRp(Kn$oeG_kg4IY3cxA18?D-`#WIF)6#1jS)^0oZ|tATi>S7(EP@X(ffIO zc1OoW$1jb|ot<{CC$=?%1E&|Fe6GaxfGlXp1jhQN362*zY0yyZ0i=+eO z`FZb%&V6Io_3`ApCX4i6Sx*RPBsXF+k}E{-2@%lQ?Z~8eX@^mU59qZih_Uu1qGC~4 z@Ya>Uv;gh@jjqrDW-u^y%?6%HWQKFm;sb>RP&n)q)Gv>;QT#N|PczhzX-qPb?&>0P zvbBEV>GiHlndpQjlN8X4d6r#(&vHb!Wc^vw1hRxlF^gCWfb zc&x1gtMn6l=A&}!g))%Mz~rEz9PF!&QZ%=ev3d^RU~w{8aOfEkmmSY$^Cy%OVhjmoC-P&iOrxzII zsk9yU`wk90_D58sShQW=uLE2sxg21MTGg#KKG?VGW?WKC3db{=(2+{-;$;$npp$5w z;7--`M6~zJ`YuW#Y^ubxC>;`sJ|~4 z$B%j81w~*#ZtN8#HrUn#5L}mo1I)VvkN^ZI4&h)-Lg0ttADtj}L@#4e_`NF+{a^sI$l0wL}h~Gt;RYNyk`|N5d>`4+h?l7=TPR#ld zQc74H6|Mk4O#P`VhR3AqXdA#)7?M^7m|XCz%P^pjro6;NRp0shX3@Q>{^w%$hN8Ql8DfwO&&-eLC@aX{~l@ z?c46us13UtUrpJG=fX&-MMC2aFJkTp}Rh;C;7a z7~Q-)L{N`}V$vXx?h^CJl`K8PiC#u>yR4$xE}czgQl4YUH;ZpW ziTC)sfZz|u{a(=A%~uuBna|BOUg9*Rf0#FE`@rGN{VM=_*0gNOK&)!5l{B~IJh=1i z$6BwOICUW<&m!2E+7(!lvloL6km=ZnN~eN$d2+~Q*+z<4j0*hc3`DGpvJf;_0Qd;3 ziLwGq)GvJPqOo$(mZt?396A)^N2A4;J4`WxRp8(-<((dT06DG^^ zb8lJC%{9B!q$U+Qbp5su7k>W{2oVXsuNM_#Sap0l@a52BxIj0aH2gWY=r4yaho`4D z{e_ALe!bV1=4Zm?8{*7d0~`b>RfVF=Up_sstYJEJ5`1P_&Bhd zIH?!#fOQ`Y{;);R6)&OpN&LD$Ir))9teYK22=!{`xb!mcC%qXRGt}18N;lC{^QS8s znNZ<)T$RL^^^{9b$?pogsf3~GsB^si!R`|G5hVn3Fc(oeR73u$Ir1YOo=i_>M+R8% zAp`q6ehh~zo;hK^oOpq|7-4e6Ym+Ofmh_XqKEvBc-Y!Bd$>mJt?k!EX`wu5S+Ell9 zPuy8H3fBgL-J*8Uar;)<-pV4#XTUeW41=~cJFmahaz^_AOtR%rm@4{EG7#Rle0x+W}Or($*9Lr1_R{YHs z)?eo8Y2(gXu2Ws#>uVx^*I8tzc4!~8Fj^EqXVT)u4;)GOrKfb-w?#cEfL`CNf)HW# z#KQg3ecOQA6AWDbRX_{R3h-Qs{t8<0-ji4^To*JIr~kHml|?cZM$1<13*_&``eHe1H^$-<-HsEpqzv%Mu{Ea1eLp9DHm zn@N(+nxCR-ewcmUo`}-$9kF-+?kXZ|6-8O7WT({J3#M?ULinHZh6ijLN_TOp!5+vM zBE8_E^3AniD$3ic&qxGf$)HYf_js~*$t3(=$cCuMwrO4&D25TiLdh<+fMH|AYzE<& za3g~85ln{@(~kTfH@Wy<9B@xyyoMC>!W#e-3#vk65tx*pf&do8blRm$(BKw!KaiHy zg9G+sVYaH$@cPq9zOkY^mR1{rQ}7|QY()W}g&njbe_GT{jW>JSec$SR z+zN$m4J@gPY%Y%^pS$tUJX)-GGzhq~z~|S#BaF)S>&WE3=uMIkR0+fL0&y-+9+Z(9 zjL*7#^>2JtdY+^$6WYw1f1b5kt|Bn_dd#wru=M$qi)d52xEezYXFB5@R^6L+E3SeS z7BR|l=5JQrkXx6ndLfx!0$6Svc4HL;hYH3wo& z8))~3wDEOZj*qb9Y_X&Qi_yrkUt+QWWS^R_Vl@d_3)S?WQ>>Yq1DH3CST2$nXrA@J zSzs5IDjX#IV_j-D*hh+1feNSN!1DUd2uAusnynD{;NMXbuM|2gZ^}CVL`{hOW7p#R z72bUIcFwh9PIgbDB63RHU>K&x<( zc4E5en1l>KBIHnE*r4A4tRGY}x=Y&_ z6IY9QA?H&i-A#4hlH_J}O?jP{X$&8yLOE`63sFpkbWFbG-##Jcu0u6eXxt{h)nH

9P0F3z+P^UDpLH~Me~TqGM2|FDZ5}z9 zS286Ppa*shg5U(CuN4upR423e1O*2&3KLrtV1s7fzfcf3HEXok;~$)PSp)XGt+tc_ zIgHHJLMq4ytvBtWTpfkKH`8U&Ia`#DS!w4EbQbpeX3fOpdLn|1Ro~ADY}-*rAvMvugchy1KsSNMv!ux58ci@-UWHAcJ-ww2K@wp2sWbxs z|M^#UCzLUt8pp7FA%IaiFo0LF8ip8TruVpU59kB^Em1%>N}U294)lF4;7ETzJ~$>h z$yg_i%>nZ6wz>FmH5y$m7A7`sK)5nK9#WZuc_xu6r$6%~E#uoy!dv!8-v4S=y~?oE)ZedJQoBEg zQ}TXPEhhZ&pdx_|5ed695Xs0@sl@xLLH^&NBaQu5km=^*~-su_c*J9QvdQW@vaA5rLyW~kX{-w{(j=hp^Ch85}?C-ueG3C0RRG#X`v5{$P z$ej$&k%#`m3d_$6h4IA$jKjaz4JZZZTA374Ng`yoWEVpf@5obG*aa*P+bz|NDNw#| z{Fyb@%f5nqGB`ko#l*{(S-YUvwcC}7_nn9I=fQ+aH%+6nXl$!8e@bA zBun})%80#qnINf9q8#1;E5Ho>->xLSwyn%?nZiL|0-KQh+X$lsLxVX0hX%blU*QFg z=9}&=!UqQQ-Qp;=}9xyQ%r$r5Osk>b705Y_GZM!RUPsSj(AcZaJ^s2ljA`^7Cw#* z$rS+kFd-BRT*AWf0>=RwCLgO5mmzI*T|q8C;dNuAFy~lH$X^5L$3c;3go6F>m$xIZ z@Jm|<>={V@ogXRcKya4IA-{`=EEbx;8~(hL{ia-_R&0T4p7VBf;c)lMO;;}u!4-Fp zA0FrD#t)48{VCmUd;U_sI}Dm|Kz~?xqW%_*K~1cv{rkFC_jslGei9|7B^hX$Y;~n>;z7r7ZYtqZR<;`+BHL` z{C`;=2qo@A(CF~r=L!^$`c`r^fR_Iv*`6ah(H7r+hpgA(n;t?^Y5~6EFQt!yIN8|I?y9!Rwy-Yxj6&dNmCzu{XSP1!0Flb`^w+b^XhIF8u8j4E_ ziSm_tuDK=yX#+-?281RlFha0k@QEoiNAk@|o?H5+ncw3=Y^VN-jOr zjEt<{EaDAuG%8B?|26j2VNtDLxI>7Dh=53!%z!k~9pca>(kUPzATgwrN=OMqgOn&K z(%mHu0@AItG=hK_c<#5sI_Gzv``mvxGoG2vuxG9Ht$5#e`87whQ{aQrN9ha|kb0U{ z>c;&ed&jS)5dSK&2s-NQW zPNObg>FUwCvBB&}sRZfOkI8s!o$z@xL#-0+QH-Y!}F3=c;2t>k7>Gk2zsVab3TDHD&}^rJCuzrEFN`$r4EH}0xz5f9HhJ} zu{xt)cz`4Pwtgis^H8x6Lj|mx;WQdS-x7GFf-Lj3)UBDcG2fZ3wrKVD;idjjrgE%G zx?4e0AWZ8Zc+p+(Wsh|Q-p1px8Mlh*(Nmmaa<4x*h7JAkZ$AmR!6>K`^xQngZHUT- zk-^%RkAXQuF*sYi?i|;3q|92}@pXg2p;Z#o)|!!}2HK+V)%8-z96u2Q@o>qZZlRgx zNCy06LVB?60S2-k=HU>A2XE&P>4@OS=*3kq`+N=3x)Vkj2GO%%jNj)IIF=ce*b)<~ zhWO#US6KzMW)`OwGtyLeN9%^I@8F>?RJAs=wkEcn+|}4q)>jpH^X4f1q39pBzKJ;9!(OwHBYOo*8Dd>by~x z)%|)9g3;-wd@!#*ATYAhc%;>1My~j_^YXlHlHTabGVcLCjXMl(yyz+{#e=yihM*f_hGPsi&?^Lce5@8;O(GfR|VyBj( zmZA}e7MfHn;JWDwga!EUf7SC8K!hF)?eQUB`gfH8jwtWp!*2>mFS@Ta#8Y=v41 zw>fI4nn$`vVkyAu)-?ni&xD+uZwDc8YdQq?+a{xLS!(r+JP=pCG`p^JR;lZvpETkT zy}WFf4_V>Egv(N zs>w~q-30*_skw@oF=i_0gh-c{%O#GeJG|`IRAbzhp%%qJA1spoyQBKk%P=qpN^zV6 zLgF@pd)KrQO>B5#hicI(ZtbpL?(eO*Cb?y3U$u>Jj~ZxuYuSBNN6=PUKYP&HY-sZH z{pU!e;?%3GuB~hMur49NK@^jDM*0YS9H7XzWs*Wf5BZm&xO7EE)?1Nrf)8p@>qqa< zc~`&Qhi5db9|B~I5~BAh21Xj#hY04lVF1*}JiHYAz%RP%HLCH4K;J)Y){jDn5GmspU_}90*DbnEg%;ABsx-D zY4RatGVJmKw%#Gc8=Pkv*yYUF;aff&L+-S%H@6(ZN-SZ z%&o6a&SOd}Jr+NQ+nT0Ce*-IfbqXmPCk+IVl^x-}%Iw8JnDhXV*>qLsLW?IwL4JOI z5O1mI#!{GFIod~PYjbL8b{;~%goV4Kr&=&y4{p} zdQ}b!Ut9=CW`$hYP&{s}a#H8)g_TNyS|dc*k}VdUQ419s%mV29U>Pss#8yMarH6EfO1qgB-xA5VGe~PF ziKa8~LG#MC$QcAsP>3045!&aiaFAc!XBkx=UMkY)c-orV^&_rsWOe(*@z{G)D0=9@ zgz2OcB@-dq7JqHgidd#I)(0$q&XQJ42vK^KemfczcL-1?aY(Vk5kLFLz*B&`q-h@Z z#!CcpIN9<#&R9E{jmi;Bi`MH~46p8gd~8Ti_)T1uR^Z!J7G_r=4o^zkK(m|NhF=G? zu%u#sO-p{c9Uxvy@j(~;iPc+3Gfg1isOZ&sIh;d=1#Nj#74X-}s>~=U91u-@Jn&(u zr3`u)BU|Zl#k7~Lz$&9_7^tUmWAs4jU|3Y1y9;RWn#lpZkm2`snHMxhSaS%ipiWfS z5LP6PJ5YiHH9zjjmqC4Z?ia-sRN#m?KlRudE;0G))k|JM%%r=As4d&;Ec;;!MEq*nkn z^>GWeYgtumM-xY5_k}ir3=0*PqoCKeu~qkWI8@fKl+kRVpRJW9Iz8UV| z%0O`_Gcc!sB*a9X8qLo@3q@NBsYp;^gZacu03uM4kt%&!Q~E$5$3~d(0JUfP^n+^+ z>4@9Wp@*>?RpLOezn3UYgKhWH_~lT$X7Cq8$!62}X&v9gyY+6zYY3W!i z|8i3?Bd@|U#nVjSR__@sG{E8%-#eu|{hjdvqXnvK&rhN}G&tbpS){Cbkw73`VN*fr zGVI%1*q_4%3Z^0z+|iK9VXMTx_CSA0wq5&-vVwh&nI!&CN;vjH?ANoEK_6ln>{5Ir zPkamJWnCQg=-SzBsqq36mam_%&4DkrV*sTPpsWG#Adn&)_;a*GU{v|b9&jCXR}9rO zDg0<4rHw)JuH?#N*=Jo&1Ps1E2Pe=-&{q*);Ph~yZW%(QHg75j&!a&zEdsg3%{0T`TYBPqTYsX2QHpQ ztO_zTDxU$df!v;FFZNYG?FR$9XMsrylaWy!E0Nv5uNfRqJfhKXUQnCXUNISOrylCY zwsg01>aUfD)CueeH^pS+d3(eg%gQaP1kp~{R96>ID849R<36s@fAeIc>bH zBaXcP_ zBhr^p;TDK24kby;sWCau(uMIU1`a`YRM~)dU1--UsSSrNF#p^dQ;lNQQpqu}mwVCK z3O8lC6@S_BGZ?13xsIt0xIDM$X2M8`#KoWo+9nLygN#&%D0l#vf4mK`+gT5Yb7|y{ zx*`?HAnWu<6VgE-jl}))6@n;0Pa#y~T|-A^`ozaD>CL`%R7fJvL1cGy$fN_Sfj-*9GAevlx#+OBcunOTQ^8b6Q9>=rD9a z*%j*BX+L9Wq5itL=Cr%~#%7OxR?b%CnT{YWCHqXZjFa$k?~BIjd^z>1%TKT1+{FNr zPCk)fNuPrH967nf#Mcq27IG}(00N2U#ny}Rku5{PpzBP2ASK23D1-X>&(R8Y7*Wm` z_BFWk*H@VeQur8=WIn{2*0Yf<1#b_kA4)BNQ|ebd1VcxhNJ0zHqJZdczs8}bpZm~c z-8`%a)xi04`%d(Q)NPSnv2cCiSSry=W&P7Nl(0wa2cU0_>bS<}AN~+NgQtaNjCF0l zH>+pvLcN|95MZh#e9^`AQx{bA(x!5NNe^<>LlQ1uxAl0C`aGNg#K{{q3`O z0RG04KG<0~vA(%$ZRe7tA|7`OAZzQ!=H?wrONW$l>O|`7RuA}wiMF4kYBF1*7^D%t zS3V*$)`fJ57$1H9wuMlilEV}iXU&fcVP_l<_kPlZ+Px8HLN_(gJoGq@Y_m_f^xZXc zdBXo3qbE;+>@djnadG59$`2serygX(PkhHxfn*p6sgyL@OJuQ26}I~wxjMXK{uH|Q9lKVPG&wt4N1Iu~Vl`LJn znj-7Odn|Tm<*u7XNKIG!?o)~+a--^{6!e99oAH%3%0e1A*y{Ebz@qhr_$L!Nj0mjQ zYapm=*svC_z34S0pz=7$ubA5EZ^RF)Wjjmf6EsfGPcJO=IqXjfN#}El)a{8&aN>Mm zyP}w%-C9uj#l3tnspD20t2XL~ZIaFNyU@Ud1qSYZssu8}k_N?~=93Z-neOsVmQ?a) zOUM-jukzrfL<(C|kY!xXwdS#0}(AXhGg(=KrHFswCw z`6eEJ1)cRQ;))4Sf&eb@oVm{e6BeB+Yz&jFmU|mdko<^7Fj9+!5K~m}m`C>}1|a|@ zLW}EelH6g%NyqesL6IFEc8)*_owZwMjkUE?j}a~ONT}I2$LKxAght)tQ9PmXQravW ze5sQmA7nC7(STlOdD618Xov(1)4y8|_bq!Vbo;jn6hQxa(k->0b@zL!;k$d`yj5)7 z?_BRU4@Zy?w*&iUCWI#ANT&cL<^`}br6@8ZTwGHgcL?;9)uO>36t6t?Z($k*BMDb& zv(lV*bB_ARr5gGp5w3Lq8(OC$czkUg&}B3B^m)IN_Xw$A8Fm#)h^^pd!Boa2EC z#nirok<$SUl^{!wwq9SSee({%$oN@maojoC zr^FX_@`KUq_qZmQ-ydjYBHe~ffi_g-UQdf`7#f$T(_$$U0scV$Qyj;ySV<4vbm#|Y zi~weOI{rMEWP@IF$j?)Y5RsUL{;|j@ay4LxX+ySAJvsBGp0#w5aeiSBYQ1PWR}0&J zX=Kcc?c?=58ym^X^<`>pP1t&Qi#L~aeJGPJhBZc<+q+aNG-GeyH>6E!59tlq*7-lc z9bV_t2BCOQ#IR9RDJ{#Xzm8+mrw!!j>l zrrLdOt!r(4wjH68W>V!u$&s3YiYyl#OPlcD0pj1;7MoTd!4*c-4)fuI4J%l+ndw zrU!QYINHXc7c?!mm&bi8yM}*UdpSRSuP(*=z8%kU0No9Ao#%SDEOmn~A-M5r{~8&c zd>7CUOfWox{_8Qou4DGSq}--LSRL%W)?as81LAdw*TUr-RGz6xpxs5}1#&Ny6}<7N zkD<|3o(_CXe+JrG0#H(6Hwn*CE6{M%V+Bdx9 zat*j*b@hAi>`7iau98PvAN{y^n5$=56fyT;l#P9K_xshuNptU8OE&Xw$eDS_Gnt2B z4~gh~j$3G0FmYhWsGI}WM+AIDL^#iIOVMKPge`60*Z#DgsAw!Or6RaV2*e+NWByFu z6fQAmhjf-(A9&Ek+6W&VwhpW;_TEU&u$yqpxhj|3bf#i%-`S+^A>zAGQ%;d!rpNe$otk_rC49)vgDN&vG1@5avj*jmx**I(&>V($Q8fZ>my3NEz<551&C!A15c1tsz zI#ggYV$uRobD)KYCKqg!M{OYSyuBBV>AZA4|Y?Hk{C zzlr02x3bbNULN;yWbKmb%apH9rbEl~XfKVd07HVY1k8t&HH8{V7- zG@OZ*uVzpVU7H_wErzUJ-YUFKCV2L(!I+cj0~d#4eo@KT)bi}Op-Y4Tehs1-wA`U? zJ9cP=D-|*K*Wze1&~Hz_-xe{~5D>E@3%1r_(o2EmQ`oi zy9?vXN+AS4nfo1MrV|#GklXCUuy0Av+f6{ah?*SsO-o4E)j+kogB~sxs}X|^d0kBo zzE^Kn9B4pQ3FVXxTE`R3Z29ib8)Vnc?D=ril038ooe%|1>E+Ft|n+_ za9>Xu94=X5_mhg`1N9{6Gl0fBF^?RbLu7Nyx8p}VvQP1Bhf!GQIbDe*0(uNa#DvvZ zz*v}Oe=nQe_$I{3pjtwsE*dq}m7qG?@~Jf%CB8f)#?sbk*H2bnEBJ$Nj!xji1)Z-B z7(e76`hQfD{b=#&_Uk=Qx$`1klwV5jJMIFtxRC|hmBo5xk5bC&ktv}aTG~q%H z8dc|;^}#{coT`uzx|4`3HdA~2v4*8C`wy#@o6F~z**as4wO(nmJ z@tsHWKi*{RO+KV;Z2v|)_hh;Bhfo4|&6O{M_cQwK*bA2=yYG+%id`MdaTTIWsV)?+ zzu*4m?W=X+tDxCWVoM?H|Wy4P$<9^$ojeJ`n ztFqPE>cUtXf!>+eTuuG+p8Waivv*4u2FI5guI-EYh%Ap;n+LpH-ElU4PtZWI+F?{9 z0=xS^XZs(k1dl)`4>a{aP$0B8IqE5p;1K%t3Jhky7M;o>&#qYODqZG0eP^XbQ%#xu#P`I7Lg>S{O8QJWUMOfY(LFpwr@j&9K)VyJy@ zzjOCWdU|Pf9vZf}^Uc}ul;=ukgl?VHps#i3WtTF_IvDUA|{T{pFlR5UYP;dpx-|7f2oztQ12FWt(tGe;#D27 z5w`rYy9PR`?pwNGFOpJQ@;e-M;<$VlS_Y*!i?c3+^GWNOXo zU&^y*;D&6U>@K1yK&wVoYohGBgB&9K#-^{zSjgebpbww%TEv|I6r!ew{bbE+hVo(??=PFJSZh?z zyeGJD#AxeWZa`q?L1U~&%P%}7kb&*I(Y5Auf6LzTM*L!uU4ojuD0!iFfgq=$pdlBB ztVw~jNUb=2JdLXUfw!HJtYScp;%6^0=L~w9N58ELxWsRtJbeVJMXgifl|S=oeO$JA z(nC5u%pOWh6p;{0#rXyhTE_f(#*i{_~O^Y6$DQmK~gp zo9>Yr#}cid))#*W9ma4dDTYnkIvcuqQS`>sBiHRzK- z_ta8T+3%n}R_TdozEE$e+&)avy~ne6t1hJ7&CPX)$0CX&o5QJ32TRz-_Af{^^!F?L zcV74B_7JFtff7*9*x_C55CX7-JxgI{t-Gno zY5*1#n)m6!ETqQN!+@Edqf<4xjEVIWPG6&OuWuFL8kS{72b{Pa>SB!S?v=XqRcL)I zdb>DnWu?kqMM0^=`nj|f$YnK3;8%VT;rDHE2QlWJ(|)(nDr$B%^?s&#Z*+nZzGY1g z)u=^pP_9Lj-O$N zfY?`;?d(NochVV@e{!Z4R4oDNIh(S5H=vZ$wYKNT_hm{~_JmcT%FbVtc&&nZ_+D+Y zHTsQ0)?IM+5wa&n8*zsj|~1ZYXwNa1wIs#@9P`Nbc6;E9pHJm9ES(5* zZJ15W^h6LSC*22q8SJq<3sgfr)c3Rmq(m-e`DS~J8E`GLl zE-%y_apQl_B^l$_(-FgxoB#gMev3PSpjOX_AW#={V{$k=8^v5aZ1*$rwhziZ{h$7^ zmcJi?k{9SCWAOvBRd6W~Z3O8F$dnm=Iuvx)5QdoN%-}|l`*BsHiWTJIyjpv`y@=OrJW_)pUGTKV8(Xtb8%?cqXc$A~7U@u~6@ zGvpXkO=UxaQFr;Gl~Q~ht5AXSM&1;T-Jz2_#xF1b6+IN7iJSVw1HT`x+^|14`sX7Y z%{yQQty6YMT=O$>tnk7IIl;o{cM>10(DnU3hR%O41)O=lJs zdVR8o^t4i|XzT#v{z#n7H6~l}vfk~>8bSh-v%^pD*La2=>#9?`eXF~q%tMlbZ6vFslSC;Eb>KFPyrTgnDVTMyNfXY^ki!jt$wO3 zq{WsDXh+7RPt>!ZY1U3cYHxdBnjjO=t5@1+k4mpv(X~MQq4ItOAo->XsEl7<5?ASs zJ7UlpbW`6gp*O*gtef*4wlG19ea3C+c=kB*&a+^`zwoxu=3j82LCgwF3=8s~kENpZ z7bGh=Ys^-bax<`P?5x~zzTfJo^r5tGO>z=RzW>E@*_zlUL)1wy2M4Hd#a2;kPi@(D z!e{B7RsKQ~{$-=gmjrcUzu4FYx&VbZ1^t<02Gq;t@u-od`M6if3g_~LKQI}ISECFr za2h1|wl_|KVRfr3qXLb4MtXPGe~UsGr2ZsNi~%SgR?JU8T8<9}5xnal9sD~5#60sf zq?VqMS~2Zyc-_qhQKAJ|ZHjz#Q4GZANbY5~FkUtqutPekuL$X0^(ABu`B~`)Lrc{B zK-ZR#RUSGw?BhbXq-AIkH(b7uAmtSV>nz1WnUkEW^+}4=L9>Y%YVh{^L}Fk6r4j*G zM40!ov2pShw->6o_M)KFh?NX2VEPGj% zMiwgu`1RtOp+?GIK@DWN(E2i$!A+}GakeibqoQQ#{}=NI2wQG3UM<-icY;qDX=A+_ z*`G=>20ozWwDY|6W(F5OsTK%W#?wj(0DoRtYrx3T~Wd} z*!&PPxfw0XrYkh9Qu#>8j|Vu{9o94A&5&jit6Nf>*h&oEH?&Nm8BjHgi=6;;$r;hr zk#(0rRe&e^2!@9|A&(Rq+`)#+&%p6idl*1wR*La2%p(s3F~I~=J+Q=r z0O;=nGSO=#og&|^5=nG_YvOEjW_A{PZlNf9QVa}IOOg7Y_;L=DW{@v;O4%;&wRga_ zZ1xx+W5+7Q9c`Ys6IlyXlv)|1_$ko>%m^F&E@&bF31sRaaY=7tLIhfDETH;M{C7|W zFC>wQy^kz))Ea8YQj_-TCd(zFi`KnDA0=1C(9$B8l&>x`A&1TU%OpVGgI688sueRd zojCLCip_pWNyrjsW$hWO@M*beLIx*6h9(e`=hJzv9ABs-QdrtY*oSNj5v6Nl; zB#{kZ-KI8j@T|Ec-IWIFU;`RKAx+&qep=o%c9ou#)`377ELX47HqA(r!U?$CY0dJ> z7o&J?ii9PAp_L1(Pug?I)Cjy6@&wmAUg>KzX`X8P{L75-xQ~P4EmBm}em2-X~J7S2=vCgodWUSi1S=?*jYoKyovLMHKc~N&|fUuM`#C z`2(`=Rbt4gMK`y0QOiSXe1~8pdg$qGsOk@A1ru(OX~Vj&cl)C?Uo``t0$V&}ao2`Q z&&qFM`_wKHpAAnKc?7xoomhy7+R5^PucQE_n-s_G%rmUKlx*7C7%q^fnqnhLX}|gj zr7T>ajfAUD4_n3bb)vU8??p!3cy?Py&IhGiAhqN;3CJr@>t1LaiG@Wfe>nb@sPJHr zkfbvT9*h;9ut|@~YAc3+E~O9WJ|Lx`p)kj8hiKh5|Gt$J0A!d2$;W~-oI(ol*8sBP zA+Q}1$Y@Si5}kqWKKOC+K0*?DJ@UtxT}Q1rpy3a+=0MB_)No1;GjHBQ`6TVmZ#+tp-GwT`4 zyyx--Ws^Z=jP9gG$H+yIYpDbo_&iIyNR>6be4Q1YJTp&A}rnpu~kU8lc(P<#1y zSFfBZ75NqS+>2T;er4P<>v*X;>W=g%%@tTTWLJOz#B!kr4A>Mq;B{ zsT$O=vYW5p_P_#YSV3Z;P0eB)0=~{DcIrEoTNzRQ5r%qjc3&dhGm-xde~^7fB2JrM zz(fflvt$Qj;uEXWlLEyXcnBz$zgU?UfenIJd!AY(=843{=@|{)ak`TSOB_rqfIi~C zV+u?fp$K%0&ttzYV1-}t{EVk4T8Br3Kwf9a(h9jMZ%`f?PG-uIEf@vJ55Kcj2-*yL z2`PElz@SkqZZy{mMuXO-TgcTmATyDUMm&^JxtgH5=$A-4lK*b);U(IGl zCOwZ^vQ&25w#f=f@2zL9s1lb+Gad#sh+774X z4%q)3)@P8PhkClQh2kXBKVyP%h%+6CjC}^0EY|SQZ%ankJKqzLi`eWaNVjmwR+vNiVr4d(J)uB(Rpi zIRA#1DoOuyf*LRHo|Ed;`dT^vi^-sAsvX|6#S8SsZHJEq{g>zj{(%Ka1pP>EN$BUA z`_8!fjz$9L3}0yNTcbN_esJ#}*!d1SHXRWMK|!-!G0WjMh5UkO(Y9TWYt`?2ysEe3 zIhAv$=q1@{TsGoAD8%T$O75pQMDLKIa};8*Uy0Oh9#p%uy2r7Tcu)(}O%2G^1aT4| z(6M(hHV;f5OLWmZ!jIYt=Z2xsvjNv!no#geE*L~>BzXze(TB{7HF%lW8y;9$KOJ3n zN>A0SUKzI1NKo$N&F`+vSN%ZyZU>$g{=Bc(-&NDCV#@S`LyorK7FF+)MIX)5s(77_ zyhCGr360sJz|L=?=aDvY6{#79Vdl7b{qdf53l{11&TDF#)bas&^Fm zq~JWBJ=5KYq5R@vRMy-z^T%v2qdK1Bgy0UZ!opaB^I7@A!*HJk;w(LmJhZbLth&bN!iYX`np2k{orm5BHeZ8R zN(6)WosKa72@v>mEMPO}N%4*(_#8~hXWXu2T#NCg^!8)^ei%ZWbzl$p#SFnwU@Ltd zSeg#^3vHs5x{2Id-f@fuZ$wxzUzQ@|jlC}aYlaA2k5h*9^2;gf(uJ{4PdvAF zZPs1%1Tqw z9jmT1Jd>~mfP#E)a&S*7bQ8yZu^wMxUvfX?WD&*dG~`C!i|(SU8UFToiG1Or7mSXv z=WFctYwz=upzP|Z+S`M!Mejd-;hT-YyS%arjtM z>S7!_f&tb|?NNMIWdj8dXNS3@gPQ?Xy({;y*%Xgey)?7zzN|!`;JEN!J3=dpe8kOV z_QNNXMS9;*HN>Z_-#W5wJ(ly|*tGoue{%HjqE@>7!VlRGXS_HrwdOQGggg7?-Zkod zTLdJCf?l{6-Io3#b1Xs|GXM5r6f};!JEeVb4=f>g?E`NfnQgzXJA5*r?3>XE375Fh zIs>LCMKlrTN~gZ?$8%PVE-l|3)9oy-PAq$=*_eKo_VU*;+>N$Jnq_Yz!Qt{C^UQP$ z&G=qHw1lH0J-oI247qmG5Rdc{c-4hKkmg3HKGk1+@zRS1uiij6|q!A~O2( zJ)()w=U1wuSe;1Jw}XBEToLdjF~Al?EM`m?SS$~GoyrlB*2o~+CA)xVCn64hj;teQ z&7a*vWE>(wFs066g7FX#_faNNumwom_Fq zw(VDe+xMWTnq*xUK!%fE`pU#?C&)?_XMhceLxW!YyLurjg>1z|FodXAkKvRC9Jm`~ zR)|H<{McdxfBvSh+glu2NtQX^Y+)PQ4}d^6=Eim-MWM#G*avr?z4Tz2NptG6 zny2Np9>d9gV=Tb;RdZ8z%edB0caAdHxUMKUdgmn=i}7a0lN3V&6s}(Q zPA7#IP(G4PImdFF=26$dXT;s8=VyuKs9-c*zC+JpAUsf94cpsu@vU*DC}S6!dD>Cr zA7fN9+tQe5GLWUZjuOuPJUBl6m`%P|39QXzyyUyZ87JM3#`yHv-mx=%sAzYSP9TTm z)-cD+la+^|7Z2izmU!TD|0mQ|3()yyv#E^( z>t|Z3(9L~=_k^#)3#zc7aTousv+T2D(}5j0mN(R2E+<=zPltpEXmZZ=DbCkU&Mpia zca*k2Yo~KEUs#)Xr0EL}XT=s6j1-E#21IhoAB7^k@4c^`yDsKoPwyivjg6M1lB3sn z$P)OSXah3Vec0nl(|98BlcF#gJh{23bARP#^q`D{G_Qef`pM85d>gzS75kN9LB2C6(zUOXr}ad0RTqNBhG>?w=f7I>3_1L>`!dBd0X`&bs9g! zY*e#;VQSw^C?k8&LQj1J;QRgMG;*TP(HIrljx9b7_miV>bNxlQ`*SkLY*^8=e4Vc- zZt`OpWAuq4VxZRmP4yEe0TBi!9)K=A+iAf-f0%I74BW!M!o~d+)^It3+2T>FcgIimWWQTz6NWo4Iq=S=g`MZJ%5fa1 zJ!)rf7@3jeQ0rhjJlyAsZj)>=p77g|GR^4P9u{V@ z-Qza2B=>Hl9(2@woPLT2CQh{D%E z*)HS(Zn)ss?Q#R-)dOtx17dLu0;;Zs6q@Nx_O#I0@L84i`0VV`*`<-;DY`9hO+87x zqN#@mIvW-(F&}e}bIP3_T$Ze8a4?dSXr1?o-kZD_F;5rJ<-9GyeS!PUZ8|eT++QCG zBu#)V3=ShKXa^;S?-gbkgERn^=k3`z(x zkTIPX(06;)VW(T`#qG?umPgbra0pbi;)^8ZQ*4AQW`~#Nt@$bCWg(Q@DY>)1%jT*? z9q4557GLcR@S={c{if_vbV=C_8@Tf@wk_`W(zCl3#S`*!czJna^u>Z5>1U}u^3FX7 zP#}lN%axx4KNlaDm&aqf+aF!_50`-9ennmOrL=2qvOP=lQEXMQslfm}WEoLSn!NBnl*qx$pQCQYPzx`Y;Sp~!1k5^Ec=VLD7;f95t?9~93A z@8;2Uavbt&JH`X}tM4pc#eWK{o9fI>VE%KT!6WIXm{%Pz&ZErn^~a5W59^p$na9X0Da_F6btBGhb@PUfWSuaSz_I5V1ts|SD4U#b>JDciWvpX={5j~ z2PrtgO>zt%&*l^cR=))ErKUgAPfjnLH0n`+sNcpV)()KL8e?unDxEiu2^P2I*&g;BhF_^rF2 zZ$-^%7lk(2eH)|5ws}~&lhuCGeR9C(j=0%#lrT4MvYZxjy(k-KuNL9lSVYQGFd)nW ztY1GT7uwBoi)@Y|=e!<(dwQ3wV-AQlJu z^Wp3a3{s>w|MhKvP|cu64p+`^{5vSxR5EXtr6@Y+{h(Og zO_oia4fmd?CyI~=oyt|o&VdIx&^%5|p8y)rIPXNUcx68dTY*JrSXjJ@qn!wl!G!=J zXdSPVn7eb+O60@xgZba8^FMnK=#{}D@t@-YpaN*$iz}RR2d^+va~C!QG+6{P$VY|{ zn<=FkbmJk_1#5s%R;)2s379Wo((?rKJko!p4_3{vN}Uk-IoBb~`)B=L_jvuJZ{pg@ z_V;*3h8jq3Je-2IDUPQP_XSCPk!^Z%9>`n=^%X79ZHUqFd>Q?Y*#E@vC9gd|Tx>$_ zk#~mR6M)YEve*#}Z!C8wK6w}nTCsn3^R(#J&kNRnS36TRCCnyw+jHk*e_@pZhtj3I z2G8#r84iq3P_0I@+86x(I*+3;IY#n>z1OTgqjxmwiRJyIAQ^Zy(9{3pd%pCr1^J!q z!!A$U2+d5Xw*L*65VsyIOZ-n@rQVn2`NJfM`nq)hLrtB>>>7U)i$&}OD;i?UIPv}R(x;!gDHCgSrwtEn%l6lD)FHCi zRoXicg;{-S*gdiD^;@eYzW)9?u^*}eRXp<4rL}+*ta1$(Q#QslzIZ=@qwWTWiqEsX zrF!ASNFq$S^eoselg zIbpf^4qGM5X8YP9MIBjC#%nuK_4z#;yLhgPIsua$S_DeLeHrN8iCquX)mf5t-~8&r z#@(f1gU!eODP^vQSF9kN8$i8;%kR;{-_aKfefFh)hG>$bDp*y*6#Ww2toE>S=vCmx z>}VMIDr(uEeg2}k-l4Q;FSEu>X@E6w)-%29udhdSi$5)-|`EQZ_FcY`f&#LVxN&Y1}AU4_Ad=jPn&hE1ti^&T>7MB}XF*VjL7VSN3a z&60D%*|yWxA|@-0HO%W?NPFe>I2|M_9X_hwS_QA`Y@V{PCTewe+n;;(W{t1g&}?%P zpwyTQV{6Ilgmb6{E%IVL6TfKxxF{3NX!k`W1+oI^6W$v=5rq^hwr}hyN|%vIhdn${KWc|b z(>~&kKows_98+qwCWOfhNl3^9zWB}>-@kgP#3YKgLkeq28m?Xe?x{X>=ui`M7->lUz! zvbjA?cC;gVo2^BiGcL#KdL6G&vK{9Q6-|^wSzUW)=<5Dn3nvvp<$w~}v{XCAb!yDz lCf}cO>l{qM`##S)(y=h^d6pPE;x_U+Av2UPD*Q9~e*h*XD|`R| literal 0 HcmV?d00001 diff --git a/task-list/app/assets/stylesheets/home.scss b/task-list/app/assets/stylesheets/home.scss index 7131aac4d..d58b72f2a 100644 --- a/task-list/app/assets/stylesheets/home.scss +++ b/task-list/app/assets/stylesheets/home.scss @@ -1,3 +1,60 @@ -// Place all the styles related to the Home controller here. -// They will automatically be included in application.css. -// You can use Sass (SCSS) here: http://sass-lang.com/ +html { + font-family: 'Quicksand', sans-serif; +} + +body { + margin-top: 0rem; + background: url(cloudsart.jpg) center repeat; + text-align: center; +} + +h1 { + font-size: 3rem; + color: #03577B; +} + +a { + text-decoration: none; + color: navy; +} + +a:hover { + text-decoration: underline; +} + +// table, th, td { +// border: .15rem solid black; +// } + +table.all-tasks { + background-color: rgba(255, 255, 255, 0.35); + border: .2rem solid #03577B; + border-radius: 5rem; + width:30%; + margin-left:35%; + margin-right:35%; +} + +table.single-task { + background-color: rgba(255, 255, 255, 0.35); + border: .2rem solid #03577B; + border-radius: 2.5rem; + width:60%; + margin-left:20%; + margin-right:20%; +} + +th, td { + padding: .75rem; +} + +th { + font-size: 1.25rem; + color: #04709F; + border-bottom: .15rem solid #03577B; + margin: 0rem; +} + +table { + margin-bottom: 3rem; +} diff --git a/task-list/app/views/home/index.html.erb b/task-list/app/views/home/index.html.erb index 12c582e43..bafd12889 100644 --- a/task-list/app/views/home/index.html.erb +++ b/task-list/app/views/home/index.html.erb @@ -1,14 +1,13 @@ - +
+ - - - + + <% @all_tasks.each do |task| %> - - <% end %> +
Task NameDescriptionCompleted AtTo Do:
<%= link_to task.title, "/#{task.title}" %><%= task.description %><%= task.completed_at %>
diff --git a/task-list/app/views/home/single_task.html.erb b/task-list/app/views/home/single_task.html.erb index ac086bd9e..d80fb4fdf 100644 --- a/task-list/app/views/home/single_task.html.erb +++ b/task-list/app/views/home/single_task.html.erb @@ -1,6 +1,6 @@ - +
- + @@ -11,3 +11,5 @@
Task NameTitle Description Completed At
<%= @selected_task.completed_at %>
+ +<%= link_to "Back to Full List", "/" %> diff --git a/task-list/app/views/layouts/application.html.erb b/task-list/app/views/layouts/application.html.erb index 0bc12ec2d..152a2bf89 100644 --- a/task-list/app/views/layouts/application.html.erb +++ b/task-list/app/views/layouts/application.html.erb @@ -1,14 +1,20 @@ - TaskList + Task List <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> + <%= csrf_meta_tags %> +

+

Your Task List

+
-<%= yield %> +
+ <%= yield %> +
diff --git a/task-list/config/routes.rb b/task-list/config/routes.rb index 2e558117b..5498a0d0d 100644 --- a/task-list/config/routes.rb +++ b/task-list/config/routes.rb @@ -2,6 +2,7 @@ root 'home#index' get '/:title' => 'home#single_task' + # Example of regular route: # get 'products/:id' => 'catalog#view' From bc47c35fb40a75f68c426e7751b786bf18e4a7f6 Mon Sep 17 00:00:00 2001 From: Anna Wilson Date: Wed, 20 Apr 2016 09:35:53 -0700 Subject: [PATCH 04/18] CSS for Single Task Page. Routes with .s now work --- task-list/app/assets/stylesheets/home.scss | 1 + task-list/config/routes.rb | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/task-list/app/assets/stylesheets/home.scss b/task-list/app/assets/stylesheets/home.scss index d58b72f2a..c9c88d215 100644 --- a/task-list/app/assets/stylesheets/home.scss +++ b/task-list/app/assets/stylesheets/home.scss @@ -42,6 +42,7 @@ table.single-task { width:60%; margin-left:20%; margin-right:20%; + border-spacing: 0rem; } th, td { diff --git a/task-list/config/routes.rb b/task-list/config/routes.rb index 5498a0d0d..c0c68a10e 100644 --- a/task-list/config/routes.rb +++ b/task-list/config/routes.rb @@ -1,8 +1,7 @@ Rails.application.routes.draw do root 'home#index' - get '/:title' => 'home#single_task' - + get '/:title' => 'home#single_task', :constraints => { :title => /[^\/]+/ } # Example of regular route: # get 'products/:id' => 'catalog#view' From a9eb8cdd6cae0fbfafcf9befc56c141cb0f775dd Mon Sep 17 00:00:00 2001 From: Anna Wilson Date: Thu, 21 Apr 2016 15:23:51 -0700 Subject: [PATCH 05/18] Refactored Routes. Added Add and Delete functions --- task-list/Gemfile | 3 +- task-list/Gemfile.lock | 7 ++ task-list/app/assets/stylesheets/home.scss | 61 ---------- task-list/app/assets/stylesheets/tasks.scss | 109 +++++++++++++++++- task-list/app/controllers/home_controller.rb | 9 -- task-list/app/controllers/tasks_controller.rb | 37 ++++++ task-list/app/views/home/index.html.erb | 13 --- .../app/views/layouts/application.html.erb | 4 + task-list/app/views/tasks/add.html.erb | 11 ++ task-list/app/views/tasks/index.html.erb | 19 +++ .../show.html.erb} | 2 - task-list/config/routes.rb | 10 +- 12 files changed, 194 insertions(+), 91 deletions(-) delete mode 100644 task-list/app/assets/stylesheets/home.scss delete mode 100644 task-list/app/views/home/index.html.erb create mode 100644 task-list/app/views/tasks/add.html.erb create mode 100644 task-list/app/views/tasks/index.html.erb rename task-list/app/views/{home/single_task.html.erb => tasks/show.html.erb} (86%) diff --git a/task-list/Gemfile b/task-list/Gemfile index d0ca1fdd6..90caf7e90 100644 --- a/task-list/Gemfile +++ b/task-list/Gemfile @@ -38,10 +38,11 @@ group :development, :test do end group :development do + gem "better_errors" + gem "binding_of_caller" # Access an IRB console on exception pages or by using <%= console %> in views gem 'web-console', '~> 2.0' # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring gem 'spring' end - diff --git a/task-list/Gemfile.lock b/task-list/Gemfile.lock index c45949a77..abfecdc5c 100644 --- a/task-list/Gemfile.lock +++ b/task-list/Gemfile.lock @@ -37,10 +37,15 @@ GEM thread_safe (~> 0.3, >= 0.3.4) tzinfo (~> 1.1) arel (6.0.3) + better_errors (2.1.1) + coderay (>= 1.0.0) + erubis (>= 2.6.6) + rack (>= 0.9.0) binding_of_caller (0.7.2) debug_inspector (>= 0.0.1) builder (3.2.2) byebug (8.2.4) + coderay (1.1.1) coffee-rails (4.1.1) coffee-script (>= 2.2.0) railties (>= 4.0.0, < 5.1.x) @@ -143,6 +148,8 @@ PLATFORMS ruby DEPENDENCIES + better_errors + binding_of_caller byebug coffee-rails (~> 4.1.0) jbuilder (~> 2.0) diff --git a/task-list/app/assets/stylesheets/home.scss b/task-list/app/assets/stylesheets/home.scss deleted file mode 100644 index c9c88d215..000000000 --- a/task-list/app/assets/stylesheets/home.scss +++ /dev/null @@ -1,61 +0,0 @@ -html { - font-family: 'Quicksand', sans-serif; -} - -body { - margin-top: 0rem; - background: url(cloudsart.jpg) center repeat; - text-align: center; -} - -h1 { - font-size: 3rem; - color: #03577B; -} - -a { - text-decoration: none; - color: navy; -} - -a:hover { - text-decoration: underline; -} - -// table, th, td { -// border: .15rem solid black; -// } - -table.all-tasks { - background-color: rgba(255, 255, 255, 0.35); - border: .2rem solid #03577B; - border-radius: 5rem; - width:30%; - margin-left:35%; - margin-right:35%; -} - -table.single-task { - background-color: rgba(255, 255, 255, 0.35); - border: .2rem solid #03577B; - border-radius: 2.5rem; - width:60%; - margin-left:20%; - margin-right:20%; - border-spacing: 0rem; -} - -th, td { - padding: .75rem; -} - -th { - font-size: 1.25rem; - color: #04709F; - border-bottom: .15rem solid #03577B; - margin: 0rem; -} - -table { - margin-bottom: 3rem; -} diff --git a/task-list/app/assets/stylesheets/tasks.scss b/task-list/app/assets/stylesheets/tasks.scss index b57862ec7..780d4110c 100644 --- a/task-list/app/assets/stylesheets/tasks.scss +++ b/task-list/app/assets/stylesheets/tasks.scss @@ -1,3 +1,106 @@ -// 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/ +html { + font-family: 'Quicksand', sans-serif; + height: auto; +} + +body { + margin-top: 0rem; + text-align: center; + // background: url(cloudsart.jpg) center repeat; + background-color: lightblue; +} + +h1 { + font-size: 4rem; + color: #03577B; + margin-bottom: 1rem; +} + +nav { + background-color: #03577B; + margin-bottom: 2rem; +} + +nav a { + display: inline-block; + padding: 1rem; + color: white; +} + +a { + text-decoration: none; + color: navy; +} + +a:hover { + text-decoration: underline; +} + +// table, th, td { +// border: .15rem solid black; +// } + +table.all-tasks { + text-align: left; + background-color: rgba(255, 255, 255, 0.35); + border: .2rem solid #03577B; + // border-radius: 5rem; + width:40%; + margin-left:30%; + margin-right:30%; + border-spacing: 0rem; + +} + +.center { + text-align: center; +} + +table.single-task { + background-color: rgba(255, 255, 255, 0.35); + border: .2rem solid #03577B; + border-radius: 2.5rem; + width:60%; + margin-left:20%; + margin-right:20%; + border-spacing: 0rem; +} + +th, td { + padding: .75rem; +} + +th { + font-size: 1.50rem; + color: #04709F; + border-bottom: .15rem solid #03577B; + margin: 0rem; +} + +tr:nth-child(even) { + background-color: lightblue; +} + +table { + margin-bottom: 3rem; +} + +input[type=text] { + padding: .5rem; + background-color: white; + border: .2rem solid #03577B; + border-radius: 2.5rem; + width:20%; + // margin: 8px 0; +} + +// input[type=button], input[type=submit], input[type=reset] { +// background-color: lightblue; +// border: .2rem solid #03577B; +// font-size: .75rem; +// color: navy; +// padding: 16px 32px; +// text-decoration: none; +// margin: 4px 2px; +// cursor: pointer; +// } diff --git a/task-list/app/controllers/home_controller.rb b/task-list/app/controllers/home_controller.rb index a686815ab..fc0b4743a 100644 --- a/task-list/app/controllers/home_controller.rb +++ b/task-list/app/controllers/home_controller.rb @@ -1,11 +1,2 @@ class HomeController < ApplicationController - def index - @all_tasks = Task.all - end - - def single_task - @selected_task = Task.where(title: params[:title]).first - render :single_task - end - end diff --git a/task-list/app/controllers/tasks_controller.rb b/task-list/app/controllers/tasks_controller.rb index 1ad33d04b..1baac66dd 100644 --- a/task-list/app/controllers/tasks_controller.rb +++ b/task-list/app/controllers/tasks_controller.rb @@ -1,2 +1,39 @@ class TasksController < ApplicationController + + def index + @all_tasks = Task.all + end + + def show + @selected_task = Task.find(params[:id]) + end + + def add + @task = Task.new + end + + def new + @album = Album.new + end + + def create + @task = Task.new(task_create_params[:task]) + if(@task.save) + redirect_to root_path + else + render :add + end + end + + def destroy + @task = Task.find(params[:id]) + @task.destroy + redirect_to root_path + end + + private + + def task_create_params + params.permit(task: [:title, :description]) + end end diff --git a/task-list/app/views/home/index.html.erb b/task-list/app/views/home/index.html.erb deleted file mode 100644 index bafd12889..000000000 --- a/task-list/app/views/home/index.html.erb +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - <% @all_tasks.each do |task| %> - - - - <% end %> - -
To Do:
<%= link_to task.title, "/#{task.title}" %>
diff --git a/task-list/app/views/layouts/application.html.erb b/task-list/app/views/layouts/application.html.erb index 152a2bf89..4e643a26f 100644 --- a/task-list/app/views/layouts/application.html.erb +++ b/task-list/app/views/layouts/application.html.erb @@ -10,6 +10,10 @@

Your Task List

+
diff --git a/task-list/app/views/tasks/add.html.erb b/task-list/app/views/tasks/add.html.erb new file mode 100644 index 000000000..9044b6982 --- /dev/null +++ b/task-list/app/views/tasks/add.html.erb @@ -0,0 +1,11 @@ +<%= form_for @task do |t| %> + <%= t.label :title %> +
+ <%= t.text_field :title %> +

+ <%= t.label :description %> +
+ <%= t.text_field :description %> +

+ <%= t.submit %> +<% end %> diff --git a/task-list/app/views/tasks/index.html.erb b/task-list/app/views/tasks/index.html.erb new file mode 100644 index 000000000..6b47af7e4 --- /dev/null +++ b/task-list/app/views/tasks/index.html.erb @@ -0,0 +1,19 @@ + + + + + + + + <% @all_tasks.each do |task| %> + + + + + <% end %> + +
TaskEdit
<%= link_to task.title, task_path(task.id) %> + <%= button_to "Delete", task_path(task.id), + method: :delete, + data: { confirm: "Do you want to delete this forever?" } %> +
diff --git a/task-list/app/views/home/single_task.html.erb b/task-list/app/views/tasks/show.html.erb similarity index 86% rename from task-list/app/views/home/single_task.html.erb rename to task-list/app/views/tasks/show.html.erb index d80fb4fdf..0f22d7700 100644 --- a/task-list/app/views/home/single_task.html.erb +++ b/task-list/app/views/tasks/show.html.erb @@ -11,5 +11,3 @@ <%= @selected_task.completed_at %> - -<%= link_to "Back to Full List", "/" %> diff --git a/task-list/config/routes.rb b/task-list/config/routes.rb index c0c68a10e..0e8307c63 100644 --- a/task-list/config/routes.rb +++ b/task-list/config/routes.rb @@ -1,7 +1,13 @@ Rails.application.routes.draw do - root 'home#index' - get '/:title' => 'home#single_task', :constraints => { :title => /[^\/]+/ } + root 'tasks#index' + + get '/tasks' => 'tasks#index', as: 'tasks' + post '/tasks' => 'tasks#create' + get '/tasks/add' => 'tasks#add' + get '/tasks/:id' => 'tasks#show', as: 'task' + delete '/tasks/:id' => 'tasks#destroy' + # Example of regular route: # get 'products/:id' => 'catalog#view' From c4ff451dcf2af991d5bf61759a952999b9629dd5 Mon Sep 17 00:00:00 2001 From: Anna Wilson Date: Thu, 21 Apr 2016 16:38:22 -0700 Subject: [PATCH 06/18] Completed Tasks are put in Completed view --- task-list/app/controllers/tasks_controller.rb | 13 +++++++++++- .../app/views/layouts/application.html.erb | 3 ++- task-list/app/views/tasks/completed.html.erb | 21 +++++++++++++++++++ task-list/app/views/tasks/index.html.erb | 10 +++++++-- task-list/config/routes.rb | 2 ++ 5 files changed, 45 insertions(+), 4 deletions(-) create mode 100644 task-list/app/views/tasks/completed.html.erb diff --git a/task-list/app/controllers/tasks_controller.rb b/task-list/app/controllers/tasks_controller.rb index 1baac66dd..62d90ec0a 100644 --- a/task-list/app/controllers/tasks_controller.rb +++ b/task-list/app/controllers/tasks_controller.rb @@ -1,7 +1,11 @@ class TasksController < ApplicationController def index - @all_tasks = Task.all + @all_tasks = Task.all.where('completed_at IS NULL') + end + + def completed + @all_tasks = Task.all.where('completed_at IS NOT NULL') end def show @@ -31,6 +35,13 @@ def destroy redirect_to root_path end + def update + @task = Task.find(params[:id]) + @task.completed_at = Time.now + @task.save + redirect_to root_path + end + private def task_create_params diff --git a/task-list/app/views/layouts/application.html.erb b/task-list/app/views/layouts/application.html.erb index 4e643a26f..013356518 100644 --- a/task-list/app/views/layouts/application.html.erb +++ b/task-list/app/views/layouts/application.html.erb @@ -11,8 +11,9 @@

Your Task List

diff --git a/task-list/app/views/tasks/completed.html.erb b/task-list/app/views/tasks/completed.html.erb new file mode 100644 index 000000000..f0fe2edec --- /dev/null +++ b/task-list/app/views/tasks/completed.html.erb @@ -0,0 +1,21 @@ + + + + + + + + + <% @all_tasks.each do |task| %> + + + + + + <% end %> + +
Completed TaskDateDelete
<%= link_to task.title, task_path(task.id) %><%= task.completed_at %> + <%= button_to "Delete", task_path(task.id), + method: :delete, + data: { confirm: "Do you want to delete this forever?" } %> +
diff --git a/task-list/app/views/tasks/index.html.erb b/task-list/app/views/tasks/index.html.erb index 6b47af7e4..c22085847 100644 --- a/task-list/app/views/tasks/index.html.erb +++ b/task-list/app/views/tasks/index.html.erb @@ -1,8 +1,10 @@ - - + + + + <% @all_tasks.each do |task| %> @@ -13,6 +15,10 @@ method: :delete, data: { confirm: "Do you want to delete this forever?" } %> + <% end %> diff --git a/task-list/config/routes.rb b/task-list/config/routes.rb index 0e8307c63..46921904f 100644 --- a/task-list/config/routes.rb +++ b/task-list/config/routes.rb @@ -3,10 +3,12 @@ root 'tasks#index' get '/tasks' => 'tasks#index', as: 'tasks' + get '/completed' => 'tasks#completed' post '/tasks' => 'tasks#create' get '/tasks/add' => 'tasks#add' get '/tasks/:id' => 'tasks#show', as: 'task' delete '/tasks/:id' => 'tasks#destroy' + patch '/tasks/:id' => 'tasks#update' # Example of regular route: # get 'products/:id' => 'catalog#view' From 1669e0b07cd8c923c6ae4993283567b19728f915 Mon Sep 17 00:00:00 2001 From: Anna Wilson Date: Fri, 22 Apr 2016 12:20:48 -0700 Subject: [PATCH 07/18] Edit function now links to correct route --- task-list/app/assets/stylesheets/tasks.scss | 2 +- task-list/app/controllers/tasks_controller.rb | 7 ++- .../app/views/layouts/application.html.erb | 2 +- task-list/app/views/tasks/add.html.erb | 2 + task-list/app/views/tasks/completed.html.erb | 2 + task-list/app/views/tasks/edit.html.erb | 3 + task-list/app/views/tasks/index.html.erb | 11 +++- task-list/app/views/tasks/show.html.erb | 2 + task-list/config/routes.rb | 59 ++++--------------- 9 files changed, 38 insertions(+), 52 deletions(-) create mode 100644 task-list/app/views/tasks/edit.html.erb diff --git a/task-list/app/assets/stylesheets/tasks.scss b/task-list/app/assets/stylesheets/tasks.scss index 780d4110c..3aa05448e 100644 --- a/task-list/app/assets/stylesheets/tasks.scss +++ b/task-list/app/assets/stylesheets/tasks.scss @@ -59,7 +59,7 @@ table.all-tasks { table.single-task { background-color: rgba(255, 255, 255, 0.35); border: .2rem solid #03577B; - border-radius: 2.5rem; + // border-radius: 2.5rem; width:60%; margin-left:20%; margin-right:20%; diff --git a/task-list/app/controllers/tasks_controller.rb b/task-list/app/controllers/tasks_controller.rb index 62d90ec0a..58ed7192f 100644 --- a/task-list/app/controllers/tasks_controller.rb +++ b/task-list/app/controllers/tasks_controller.rb @@ -12,6 +12,10 @@ def show @selected_task = Task.find(params[:id]) end + def edit + @selected_task = Task.find(params[:id]) + end + def add @task = Task.new end @@ -35,7 +39,7 @@ def destroy redirect_to root_path end - def update + def update #make this more general... somehow... @task = Task.find(params[:id]) @task.completed_at = Time.now @task.save @@ -47,4 +51,5 @@ def update def task_create_params params.permit(task: [:title, :description]) end + end diff --git a/task-list/app/views/layouts/application.html.erb b/task-list/app/views/layouts/application.html.erb index 013356518..0e42fd6ac 100644 --- a/task-list/app/views/layouts/application.html.erb +++ b/task-list/app/views/layouts/application.html.erb @@ -13,7 +13,7 @@ diff --git a/task-list/app/views/tasks/add.html.erb b/task-list/app/views/tasks/add.html.erb index 9044b6982..c76d8e218 100644 --- a/task-list/app/views/tasks/add.html.erb +++ b/task-list/app/views/tasks/add.html.erb @@ -1,3 +1,5 @@ +

New Task

+ <%= form_for @task do |t| %> <%= t.label :title %>
diff --git a/task-list/app/views/tasks/completed.html.erb b/task-list/app/views/tasks/completed.html.erb index f0fe2edec..f7481b6e9 100644 --- a/task-list/app/views/tasks/completed.html.erb +++ b/task-list/app/views/tasks/completed.html.erb @@ -1,3 +1,5 @@ +

Completed Tasks

+
TaskEditTo-DoDeleteCompleted
+ <%= button_to "Just Did It!", task_path(task.id), + method: :patch %> +
diff --git a/task-list/app/views/tasks/edit.html.erb b/task-list/app/views/tasks/edit.html.erb new file mode 100644 index 000000000..ec0457379 --- /dev/null +++ b/task-list/app/views/tasks/edit.html.erb @@ -0,0 +1,3 @@ +

at least display the right task plz

+ +<%= @selected_task.title %> diff --git a/task-list/app/views/tasks/index.html.erb b/task-list/app/views/tasks/index.html.erb index c22085847..ba58b7a54 100644 --- a/task-list/app/views/tasks/index.html.erb +++ b/task-list/app/views/tasks/index.html.erb @@ -1,15 +1,21 @@ +

In-Progress Tasks

+
+ + <% @all_tasks.each do |task| %> - + + <% end %> diff --git a/task-list/app/views/tasks/show.html.erb b/task-list/app/views/tasks/show.html.erb index 0f22d7700..6d495a182 100644 --- a/task-list/app/views/tasks/show.html.erb +++ b/task-list/app/views/tasks/show.html.erb @@ -1,3 +1,5 @@ +

Task Details

+
To-Do Delete CompletedEdit
<%= link_to task.title, task_path(task.id) %> + <%= link_to task.title, task_path(task.id) %> + <%= button_to "Delete", task_path(task.id), method: :delete, @@ -19,6 +25,9 @@ <%= button_to "Just Did It!", task_path(task.id), method: :patch %> + <%= link_to "Edit", edit_tasks_path(task.id) %> +
diff --git a/task-list/config/routes.rb b/task-list/config/routes.rb index 46921904f..521e5fb57 100644 --- a/task-list/config/routes.rb +++ b/task-list/config/routes.rb @@ -2,60 +2,23 @@ root 'tasks#index' +#look at rails conventions for these paths... +#prefix, verb, uri pattern, controller#actions +#try to understand these things... get '/tasks' => 'tasks#index', as: 'tasks' - get '/completed' => 'tasks#completed' + get '/tasks/completed' => 'tasks#completed' post '/tasks' => 'tasks#create' get '/tasks/add' => 'tasks#add' + get '/tasks/:id/edit' => 'tasks#edit', as: 'edit_tasks' #mess around with the as some more. get '/tasks/:id' => 'tasks#show', as: 'task' delete '/tasks/:id' => 'tasks#destroy' patch '/tasks/:id' => 'tasks#update' + #update shoudl work for completed and edit form_for tied to active record model... + #have them both submit the same params... or something... - # Example of regular route: - # get 'products/:id' => 'catalog#view' + ###work on this + get '/tasks/:id/edit' => 'tasks#edit' + #this should be a form... when you hit the button then it goes to... vvvv + patch 'tasks/:id' => 'tasks#update' - # Example of named route that can be invoked with purchase_url(id: product.id) - # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase - - # Example resource route (maps HTTP verbs to controller actions automatically): - # resources :products - - # Example resource route with options: - # resources :products do - # member do - # get 'short' - # post 'toggle' - # end - # - # collection do - # get 'sold' - # end - # end - - # Example resource route with sub-resources: - # resources :products do - # resources :comments, :sales - # resource :seller - # end - - # Example resource route with more complex sub-resources: - # resources :products do - # resources :comments - # resources :sales do - # get 'recent', on: :collection - # end - # end - - # Example resource route with concerns: - # concern :toggleable do - # post 'toggle' - # end - # resources :posts, concerns: :toggleable - # resources :photos, concerns: :toggleable - - # Example resource route within a namespace: - # namespace :admin do - # # Directs /admin/products/* to Admin::ProductsController - # # (app/controllers/admin/products_controller.rb) - # resources :products - # end end From 727415f9d2216148a3115c0945705c3ddfffb946 Mon Sep 17 00:00:00 2001 From: Anna Wilson Date: Fri, 22 Apr 2016 14:47:49 -0700 Subject: [PATCH 08/18] Completed Now and Edit functions work --- task-list/app/controllers/tasks_controller.rb | 18 +++++++++++++----- task-list/app/views/tasks/edit.html.erb | 16 ++++++++++++++-- task-list/config/routes.rb | 8 +++----- 3 files changed, 30 insertions(+), 12 deletions(-) diff --git a/task-list/app/controllers/tasks_controller.rb b/task-list/app/controllers/tasks_controller.rb index 58ed7192f..8a0533b98 100644 --- a/task-list/app/controllers/tasks_controller.rb +++ b/task-list/app/controllers/tasks_controller.rb @@ -39,11 +39,19 @@ def destroy redirect_to root_path end - def update #make this more general... somehow... - @task = Task.find(params[:id]) - @task.completed_at = Time.now - @task.save - redirect_to root_path + def update_edit + if(params.has_key?(:task) || params.has_key?(:description)) + @task = Task.find(params[:id]) + @task.title = params[:task][:title] + @task.description = params[:task][:description] + @task.save + redirect_to root_path + else + @task = Task.find(params[:id]) + @task.completed_at = Time.now + @task.save + redirect_to root_path + end end private diff --git a/task-list/app/views/tasks/edit.html.erb b/task-list/app/views/tasks/edit.html.erb index ec0457379..724709d17 100644 --- a/task-list/app/views/tasks/edit.html.erb +++ b/task-list/app/views/tasks/edit.html.erb @@ -1,3 +1,15 @@ -

at least display the right task plz

+

Edit Task

-<%= @selected_task.title %> +<%= form_for @selected_task do |t| %> + <%= t.label :title %> +
+ <%= t.text_field :title %> +

+ <%= t.label :description %> +
+ <%= t.text_field :description %> +

+ <%= t.submit %> +<% end %> + +<%= params %> diff --git a/task-list/config/routes.rb b/task-list/config/routes.rb index 521e5fb57..7c521a608 100644 --- a/task-list/config/routes.rb +++ b/task-list/config/routes.rb @@ -12,13 +12,11 @@ get '/tasks/:id/edit' => 'tasks#edit', as: 'edit_tasks' #mess around with the as some more. get '/tasks/:id' => 'tasks#show', as: 'task' delete '/tasks/:id' => 'tasks#destroy' - patch '/tasks/:id' => 'tasks#update' + # patch '/tasks/:id' => 'tasks#update' #update shoudl work for completed and edit form_for tied to active record model... #have them both submit the same params... or something... - + patch '/tasks/:id' => 'tasks#update_edit' ###work on this - get '/tasks/:id/edit' => 'tasks#edit' - #this should be a form... when you hit the button then it goes to... vvvv - patch 'tasks/:id' => 'tasks#update' + end From f20475a066a3fd2999504bc047afce1bf14c3ed1 Mon Sep 17 00:00:00 2001 From: Anna Wilson Date: Fri, 22 Apr 2016 14:57:23 -0700 Subject: [PATCH 09/18] Link to edit on single task view --- task-list/app/views/tasks/edit.html.erb | 2 -- task-list/app/views/tasks/show.html.erb | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/task-list/app/views/tasks/edit.html.erb b/task-list/app/views/tasks/edit.html.erb index 724709d17..f09f26c74 100644 --- a/task-list/app/views/tasks/edit.html.erb +++ b/task-list/app/views/tasks/edit.html.erb @@ -11,5 +11,3 @@

<%= t.submit %> <% end %> - -<%= params %> diff --git a/task-list/app/views/tasks/show.html.erb b/task-list/app/views/tasks/show.html.erb index 6d495a182..b2b71ab33 100644 --- a/task-list/app/views/tasks/show.html.erb +++ b/task-list/app/views/tasks/show.html.erb @@ -13,3 +13,5 @@
Title<%= @selected_task.completed_at %>
+ +<%= link_to "Edit", edit_tasks_path(@selected_task.id) %> From 16413da65b1c974668976a1d5d9393eac237ed60 Mon Sep 17 00:00:00 2001 From: Anna Wilson Date: Fri, 22 Apr 2016 15:31:41 -0700 Subject: [PATCH 10/18] Added partials for task input in add and edit --- task-list/app/controllers/tasks_controller.rb | 2 +- task-list/app/views/tasks/_input.html.erb | 11 +++++++++++ task-list/app/views/tasks/add.html.erb | 12 +----------- task-list/app/views/tasks/edit.html.erb | 12 +----------- 4 files changed, 14 insertions(+), 23 deletions(-) create mode 100644 task-list/app/views/tasks/_input.html.erb diff --git a/task-list/app/controllers/tasks_controller.rb b/task-list/app/controllers/tasks_controller.rb index 8a0533b98..887e7b235 100644 --- a/task-list/app/controllers/tasks_controller.rb +++ b/task-list/app/controllers/tasks_controller.rb @@ -17,7 +17,7 @@ def edit end def add - @task = Task.new + @selected_task = Task.new end def new diff --git a/task-list/app/views/tasks/_input.html.erb b/task-list/app/views/tasks/_input.html.erb new file mode 100644 index 000000000..3190fab2e --- /dev/null +++ b/task-list/app/views/tasks/_input.html.erb @@ -0,0 +1,11 @@ +<%= form_for @selected_task do |t| %> + <%= t.label :title %> +
+ <%= t.text_field :title %> +

+ <%= t.label :description %> +
+ <%= t.text_field :description %> +

+ <%= t.submit %> +<% end %> diff --git a/task-list/app/views/tasks/add.html.erb b/task-list/app/views/tasks/add.html.erb index c76d8e218..a4b09ab12 100644 --- a/task-list/app/views/tasks/add.html.erb +++ b/task-list/app/views/tasks/add.html.erb @@ -1,13 +1,3 @@

New Task

-<%= form_for @task do |t| %> - <%= t.label :title %> -
- <%= t.text_field :title %> -

- <%= t.label :description %> -
- <%= t.text_field :description %> -

- <%= t.submit %> -<% end %> +<%= render 'input' %> diff --git a/task-list/app/views/tasks/edit.html.erb b/task-list/app/views/tasks/edit.html.erb index f09f26c74..0b30ea1dd 100644 --- a/task-list/app/views/tasks/edit.html.erb +++ b/task-list/app/views/tasks/edit.html.erb @@ -1,13 +1,3 @@

Edit Task

-<%= form_for @selected_task do |t| %> - <%= t.label :title %> -
- <%= t.text_field :title %> -

- <%= t.label :description %> -
- <%= t.text_field :description %> -

- <%= t.submit %> -<% end %> +<%= render 'input' %> From e69c7e569dc8eac48eb44cbff2371e7a48e96735 Mon Sep 17 00:00:00 2001 From: Anna Wilson Date: Fri, 22 Apr 2016 16:30:19 -0700 Subject: [PATCH 11/18] Created Person model and seeded db --- task-list/app/models/person.rb | 2 ++ .../migrate/20160422231503_create_people.rb | 9 ++++++++ task-list/db/schema.rb | 8 ++++++- task-list/db/seeds.rb | 23 +++++-------------- task-list/test/fixtures/people.yml | 7 ++++++ task-list/test/models/person_test.rb | 7 ++++++ 6 files changed, 38 insertions(+), 18 deletions(-) create mode 100644 task-list/app/models/person.rb create mode 100644 task-list/db/migrate/20160422231503_create_people.rb create mode 100644 task-list/test/fixtures/people.yml create mode 100644 task-list/test/models/person_test.rb diff --git a/task-list/app/models/person.rb b/task-list/app/models/person.rb new file mode 100644 index 000000000..2f2e286c0 --- /dev/null +++ b/task-list/app/models/person.rb @@ -0,0 +1,2 @@ +class Person < ActiveRecord::Base +end diff --git a/task-list/db/migrate/20160422231503_create_people.rb b/task-list/db/migrate/20160422231503_create_people.rb new file mode 100644 index 000000000..727e50381 --- /dev/null +++ b/task-list/db/migrate/20160422231503_create_people.rb @@ -0,0 +1,9 @@ +class CreatePeople < ActiveRecord::Migration + def change + create_table :people do |t| + t.string :name + + t.timestamps null: false + end + end +end diff --git a/task-list/db/schema.rb b/task-list/db/schema.rb index 18cf62812..8f4357e7c 100644 --- a/task-list/db/schema.rb +++ b/task-list/db/schema.rb @@ -11,7 +11,13 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20160419203943) do +ActiveRecord::Schema.define(version: 20160422231503) do + + create_table "people", force: :cascade do |t| + t.string "name" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end create_table "tasks", force: :cascade do |t| t.string "title", null: false diff --git a/task-list/db/seeds.rb b/task-list/db/seeds.rb index 3c6bffccd..5c2cf5a15 100644 --- a/task-list/db/seeds.rb +++ b/task-list/db/seeds.rb @@ -1,20 +1,9 @@ -def random_time - Time.at(rand * Time.now.to_i) -end - -tasks = [ - { title: "The First Task", description: "", completed_at: random_time }, - { title: "Go to Brunch", description: "" }, - { title: "Go to Lunch", description: "", completed_at: random_time }, - { title: "Go to Second Lunch", description: "" }, - { title: "Play Video Games", description: "", completed_at: random_time }, - { title: "High Five Somebody You Don't Know", description: "", completed_at: random_time }, - { title: "Plant Flowers", description: "", completed_at: random_time }, - { title: "Call Mom", description: "" }, - { title: "She worries, you know.", description: "" }, - { title: "Nap.", description: "", completed_at: random_time } +people = [ + { name: "Anna" }, + { name: "Bryan" }, + { name: "Mitch" } ] -tasks.each do |task| - Task.create task +people.each do |person| + Person.create person end diff --git a/task-list/test/fixtures/people.yml b/task-list/test/fixtures/people.yml new file mode 100644 index 000000000..56066c68a --- /dev/null +++ b/task-list/test/fixtures/people.yml @@ -0,0 +1,7 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + name: MyString + +two: + name: MyString diff --git a/task-list/test/models/person_test.rb b/task-list/test/models/person_test.rb new file mode 100644 index 000000000..ad04ed813 --- /dev/null +++ b/task-list/test/models/person_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class PersonTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end From 6797e385cf9cfbc5055aa485aa27de83a27181d1 Mon Sep 17 00:00:00 2001 From: Anna Wilson Date: Mon, 25 Apr 2016 15:18:13 -0700 Subject: [PATCH 12/18] Task new and edit displays person. Person can be edited --- task-list/app/controllers/home_controller.rb | 2 -- task-list/app/controllers/tasks_controller.rb | 8 ++++---- task-list/app/models/person.rb | 1 + task-list/app/models/task.rb | 1 + task-list/app/views/tasks/_input.html.erb | 4 ++++ task-list/app/views/tasks/index.html.erb | 7 +++++++ task-list/app/views/tasks/show.html.erb | 7 +++++++ task-list/db/migrate/20160425180946_add_person_to_task.rb | 5 +++++ task-list/db/schema.rb | 3 ++- 9 files changed, 31 insertions(+), 7 deletions(-) delete mode 100644 task-list/app/controllers/home_controller.rb create mode 100644 task-list/db/migrate/20160425180946_add_person_to_task.rb diff --git a/task-list/app/controllers/home_controller.rb b/task-list/app/controllers/home_controller.rb deleted file mode 100644 index fc0b4743a..000000000 --- a/task-list/app/controllers/home_controller.rb +++ /dev/null @@ -1,2 +0,0 @@ -class HomeController < ApplicationController -end diff --git a/task-list/app/controllers/tasks_controller.rb b/task-list/app/controllers/tasks_controller.rb index 887e7b235..41b61f81f 100644 --- a/task-list/app/controllers/tasks_controller.rb +++ b/task-list/app/controllers/tasks_controller.rb @@ -14,15 +14,14 @@ def show def edit @selected_task = Task.find(params[:id]) + @all_people = Person.all end def add @selected_task = Task.new + @all_people = Person.all end - def new - @album = Album.new - end def create @task = Task.new(task_create_params[:task]) @@ -44,6 +43,7 @@ def update_edit @task = Task.find(params[:id]) @task.title = params[:task][:title] @task.description = params[:task][:description] + @task.person_id = params[:task][:person_id] @task.save redirect_to root_path else @@ -57,7 +57,7 @@ def update_edit private def task_create_params - params.permit(task: [:title, :description]) + params.permit(task: [:title, :description, :person_id]) end end diff --git a/task-list/app/models/person.rb b/task-list/app/models/person.rb index 2f2e286c0..4ed22ba8b 100644 --- a/task-list/app/models/person.rb +++ b/task-list/app/models/person.rb @@ -1,2 +1,3 @@ class Person < ActiveRecord::Base + has_many :tasks end diff --git a/task-list/app/models/task.rb b/task-list/app/models/task.rb index 935f76e12..c3c534741 100644 --- a/task-list/app/models/task.rb +++ b/task-list/app/models/task.rb @@ -1,2 +1,3 @@ class Task < ActiveRecord::Base + belongs_to :person end diff --git a/task-list/app/views/tasks/_input.html.erb b/task-list/app/views/tasks/_input.html.erb index 3190fab2e..86e480a31 100644 --- a/task-list/app/views/tasks/_input.html.erb +++ b/task-list/app/views/tasks/_input.html.erb @@ -7,5 +7,9 @@
<%= t.text_field :description %>

+ <%= t.label :person_id %> +
+ <%= t.select "person_id", options_from_collection_for_select(@all_people , "id", "name") %>
+

<%= t.submit %> <% end %> diff --git a/task-list/app/views/tasks/index.html.erb b/task-list/app/views/tasks/index.html.erb index ba58b7a54..ed5144c77 100644 --- a/task-list/app/views/tasks/index.html.erb +++ b/task-list/app/views/tasks/index.html.erb @@ -4,6 +4,7 @@ To-Do + Person Delete Completed Edit @@ -16,6 +17,12 @@ <%= link_to task.title, task_path(task.id) %> + + <% if task.person_id != nil %> + <% num = task.person_id %> + <%= Person.find(num).name %> + <% end %> + <%= button_to "Delete", task_path(task.id), method: :delete, diff --git a/task-list/app/views/tasks/show.html.erb b/task-list/app/views/tasks/show.html.erb index b2b71ab33..2028eb3d9 100644 --- a/task-list/app/views/tasks/show.html.erb +++ b/task-list/app/views/tasks/show.html.erb @@ -4,12 +4,19 @@ Title Description + Person Completed At <%= @selected_task.title %> <%= @selected_task.description %> + + <% if @selected_task.person_id != nil %> + <% num = @selected_task.person_id %> + <%= Person.find(num).name %> + <% end %> + <%= @selected_task.completed_at %> diff --git a/task-list/db/migrate/20160425180946_add_person_to_task.rb b/task-list/db/migrate/20160425180946_add_person_to_task.rb new file mode 100644 index 000000000..89db5ca08 --- /dev/null +++ b/task-list/db/migrate/20160425180946_add_person_to_task.rb @@ -0,0 +1,5 @@ +class AddPersonToTask < ActiveRecord::Migration + def change + add_column :tasks, :person_id, :integer + end +end diff --git a/task-list/db/schema.rb b/task-list/db/schema.rb index 8f4357e7c..8ea8e3ac9 100644 --- a/task-list/db/schema.rb +++ b/task-list/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20160422231503) do +ActiveRecord::Schema.define(version: 20160425180946) do create_table "people", force: :cascade do |t| t.string "name" @@ -25,6 +25,7 @@ t.string "completed_at" t.datetime "created_at", null: false t.datetime "updated_at", null: false + t.integer "person_id" end end From ba406addaa76cc654ed662f0897f3de46948cf72 Mon Sep 17 00:00:00 2001 From: Anna Wilson Date: Mon, 25 Apr 2016 15:59:58 -0700 Subject: [PATCH 13/18] Added people controller and routes. Created people index and show. Will count uncompleted tasks --- .../app/controllers/people_controller.rb | 11 ++++++++++ .../app/views/layouts/application.html.erb | 2 ++ task-list/app/views/people/index.html.erb | 22 +++++++++++++++++++ task-list/app/views/people/show.html.erb | 18 +++++++++++++++ task-list/app/views/tasks/_input.html.erb | 3 ++- task-list/config/routes.rb | 4 ++-- 6 files changed, 57 insertions(+), 3 deletions(-) create mode 100644 task-list/app/controllers/people_controller.rb create mode 100644 task-list/app/views/people/index.html.erb create mode 100644 task-list/app/views/people/show.html.erb diff --git a/task-list/app/controllers/people_controller.rb b/task-list/app/controllers/people_controller.rb new file mode 100644 index 000000000..a76c45069 --- /dev/null +++ b/task-list/app/controllers/people_controller.rb @@ -0,0 +1,11 @@ +class PeopleController < ApplicationController + + def index + @all_people = Person.all + end + + def show + @selected_person = Person.find(params[:id]) + end + +end diff --git a/task-list/app/views/layouts/application.html.erb b/task-list/app/views/layouts/application.html.erb index 0e42fd6ac..cb8cdc6c7 100644 --- a/task-list/app/views/layouts/application.html.erb +++ b/task-list/app/views/layouts/application.html.erb @@ -14,6 +14,8 @@ <%= link_to "In-Progress Tasks", root_path %> <%= link_to "New Task", tasks_add_path %> <%= link_to "Completed Tasks", tasks_completed_path %> + <%= link_to "People", people_path %> + diff --git a/task-list/app/views/people/index.html.erb b/task-list/app/views/people/index.html.erb new file mode 100644 index 000000000..9d11b3000 --- /dev/null +++ b/task-list/app/views/people/index.html.erb @@ -0,0 +1,22 @@ +

All People

+ + + + + + + + + <% @all_people.each do |person| %> + + + + + <% end %> + +
NameNumber of Unfinished Tasks
+ <%= link_to person.name, person_path(person.id) %> + + <% tasks_to_do = person.tasks.where("tasks.completed_at IS NULL") %> + <%= tasks_to_do.length %> +
diff --git a/task-list/app/views/people/show.html.erb b/task-list/app/views/people/show.html.erb new file mode 100644 index 000000000..beecf1f56 --- /dev/null +++ b/task-list/app/views/people/show.html.erb @@ -0,0 +1,18 @@ +

Person Details

+ + + + + + + + + <% tasks_to_do = @selected_person.tasks.where("tasks.completed_at IS NULL") %> + <% done_tasks = @selected_person.tasks.where("tasks.completed_at IS NOT NULL") %> + + + + + + +
NameUnfinished TasksFinished Tasks
<%= @selected_person.name %><%= tasks_to_do.length %><%= done_tasks.length %>
diff --git a/task-list/app/views/tasks/_input.html.erb b/task-list/app/views/tasks/_input.html.erb index 86e480a31..8503fb73b 100644 --- a/task-list/app/views/tasks/_input.html.erb +++ b/task-list/app/views/tasks/_input.html.erb @@ -9,7 +9,8 @@

<%= t.label :person_id %>
- <%= t.select "person_id", options_from_collection_for_select(@all_people , "id", "name") %>
+ <%= t.select "person_id", + options_from_collection_for_select(@all_people , "id", "name") %>

<%= t.submit %> <% end %> diff --git a/task-list/config/routes.rb b/task-list/config/routes.rb index 7c521a608..02ee82cde 100644 --- a/task-list/config/routes.rb +++ b/task-list/config/routes.rb @@ -17,6 +17,6 @@ #have them both submit the same params... or something... patch '/tasks/:id' => 'tasks#update_edit' ###work on this - - + get '/people' => 'people#index', as: 'people' + get '/people/:id' => 'people#show', as: 'person' end From da9cda27b0c257887dd5ad33da61359782b6cc7d Mon Sep 17 00:00:00 2001 From: Anna Wilson Date: Mon, 25 Apr 2016 16:18:16 -0700 Subject: [PATCH 14/18] Show complete lists of persons tasks --- .../app/controllers/people_controller.rb | 4 +++ task-list/app/views/people/show.html.erb | 6 ++-- task-list/app/views/people/tasks.html.erb | 31 +++++++++++++++++++ task-list/config/routes.rb | 2 ++ 4 files changed, 41 insertions(+), 2 deletions(-) create mode 100644 task-list/app/views/people/tasks.html.erb diff --git a/task-list/app/controllers/people_controller.rb b/task-list/app/controllers/people_controller.rb index a76c45069..54ba001db 100644 --- a/task-list/app/controllers/people_controller.rb +++ b/task-list/app/controllers/people_controller.rb @@ -8,4 +8,8 @@ def show @selected_person = Person.find(params[:id]) end + def tasks + @selected_person = Person.find(params[:id]) + end + end diff --git a/task-list/app/views/people/show.html.erb b/task-list/app/views/people/show.html.erb index beecf1f56..7e7a9892e 100644 --- a/task-list/app/views/people/show.html.erb +++ b/task-list/app/views/people/show.html.erb @@ -12,7 +12,9 @@ <%= @selected_person.name %> - <%= tasks_to_do.length %> - <%= done_tasks.length %> + <%= tasks_to_do.name %> + <%= done_tasks.name %> + +<%= link_to "Full Task List", all_tasks_path(@selected_person.id) %> diff --git a/task-list/app/views/people/tasks.html.erb b/task-list/app/views/people/tasks.html.erb new file mode 100644 index 000000000..16b8c6ffd --- /dev/null +++ b/task-list/app/views/people/tasks.html.erb @@ -0,0 +1,31 @@ +

Person Details

+ + + + + + + + + +
Name
<%= @selected_person.name %>
+ + + + + + <% tasks_to_do = @selected_person.tasks.where("tasks.completed_at IS NULL") %> + <% tasks_to_do.each do |task| %> + + <% end %> +
Unfinished Tasks
<%= task.title %>
+ + + + + + <% done_tasks = @selected_person.tasks.where("tasks.completed_at IS NOT NULL") %> + <% done_tasks.each do |task| %> + + <% end %> +
Completed Tasks
<%= task.title %>
diff --git a/task-list/config/routes.rb b/task-list/config/routes.rb index 02ee82cde..b1983938c 100644 --- a/task-list/config/routes.rb +++ b/task-list/config/routes.rb @@ -19,4 +19,6 @@ ###work on this get '/people' => 'people#index', as: 'people' get '/people/:id' => 'people#show', as: 'person' + get '/people/:id/tasks' => 'people#tasks', as: 'all_tasks' + end From 300c57687402e07da4de435c3ddcc6540d24e883 Mon Sep 17 00:00:00 2001 From: Anna Wilson Date: Mon, 25 Apr 2016 16:53:26 -0700 Subject: [PATCH 15/18] Moved all files into main director and CSS --- task-list/Gemfile => Gemfile | 0 task-list/Gemfile.lock => Gemfile.lock | 0 README.md | 75 - task-list/Rakefile => Rakefile | 0 {task-list/app => app}/assets/images/.keep | 0 .../app => app}/assets/images/cloudsart.jpg | Bin .../assets/javascripts/application.js | 0 .../assets/javascripts/home.coffee | 0 .../assets/javascripts/tasks.coffee | 0 .../assets/stylesheets/application.css | 34 +- .../controllers/application_controller.rb | 0 .../app => app}/controllers/concerns/.keep | 0 .../controllers/people_controller.rb | 0 .../controllers/tasks_controller.rb | 0 .../app => app}/helpers/application_helper.rb | 0 {task-list/app => app}/helpers/home_helper.rb | 0 .../app => app}/helpers/tasks_helper.rb | 0 {task-list/app => app}/mailers/.keep | 0 {task-list/app => app}/models/.keep | 0 {task-list/app => app}/models/concerns/.keep | 0 {task-list/app => app}/models/person.rb | 0 {task-list/app => app}/models/task.rb | 0 .../views/layouts/application.html.erb | 0 .../app => app}/views/people/index.html.erb | 4 +- .../app => app}/views/people/show.html.erb | 12 +- .../app => app}/views/people/tasks.html.erb | 6 +- .../app => app}/views/tasks/_input.html.erb | 0 .../app => app}/views/tasks/add.html.erb | 0 .../views/tasks/completed.html.erb | 0 .../app => app}/views/tasks/edit.html.erb | 0 .../app => app}/views/tasks/index.html.erb | 6 +- .../app => app}/views/tasks/show.html.erb | 0 {task-list/bin => bin}/bundle | 0 {task-list/bin => bin}/rails | 0 {task-list/bin => bin}/rake | 0 {task-list/bin => bin}/setup | 0 {task-list/bin => bin}/spring | 0 task-list/config.ru => config.ru | 0 {task-list/config => config}/application.rb | 0 {task-list/config => config}/boot.rb | 0 {task-list/config => config}/database.yml | 0 {task-list/config => config}/environment.rb | 0 .../environments/development.rb | 0 .../environments/production.rb | 0 .../config => config}/environments/test.rb | 0 .../config => config}/initializers/assets.rb | 0 .../initializers/backtrace_silencers.rb | 0 .../initializers/cookies_serializer.rb | 0 .../initializers/filter_parameter_logging.rb | 0 .../initializers/inflections.rb | 0 .../initializers/mime_types.rb | 0 .../initializers/session_store.rb | 0 .../initializers/wrap_parameters.rb | 0 {task-list/config => config}/locales/en.yml | 0 {task-list/config => config}/routes.rb | 0 {task-list/config => config}/secrets.yml | 0 db/development.sqlite3 | Bin 0 -> 24576 bytes .../migrate/20160419203943_create_tasks.rb | 0 .../migrate/20160422231503_create_people.rb | 0 .../20160425180946_add_person_to_task.rb | 0 {task-list/db => db}/schema.rb | 0 {task-list/db => db}/seeds.rb | 0 {task-list/lib => lib}/assets/.keep | 0 {task-list/lib => lib}/tasks/.keep | 0 {task-list/log => log}/.keep | 0 log/development.log | 54799 ++++++++++++++++ {task-list/public => public}/404.html | 0 {task-list/public => public}/422.html | 0 {task-list/public => public}/500.html | 0 {task-list/public => public}/favicon.ico | 0 {task-list/public => public}/robots.txt | 0 seeds.rb | 20 - task-list/.gitignore | 17 - task-list/README.rdoc | 28 - .../app/assets/stylesheets/application.css | 15 - {task-list/test => test}/controllers/.keep | 0 .../controllers/home_controller_test.rb | 0 .../controllers/tasks_controller_test.rb | 0 {task-list/test => test}/fixtures/.keep | 0 {task-list/test => test}/fixtures/people.yml | 0 {task-list/test => test}/fixtures/tasks.yml | 0 {task-list/test => test}/helpers/.keep | 0 {task-list/test => test}/integration/.keep | 0 {task-list/test => test}/mailers/.keep | 0 {task-list/test => test}/models/.keep | 0 .../test => test}/models/person_test.rb | 0 {task-list/test => test}/models/task_test.rb | 0 {task-list/test => test}/test_helper.rb | 0 .../assets/javascripts/.keep | 0 .../assets/stylesheets/.keep | 0 90 files changed, 54835 insertions(+), 181 deletions(-) rename task-list/Gemfile => Gemfile (100%) rename task-list/Gemfile.lock => Gemfile.lock (100%) delete mode 100644 README.md rename task-list/Rakefile => Rakefile (100%) rename {task-list/app => app}/assets/images/.keep (100%) rename {task-list/app => app}/assets/images/cloudsart.jpg (100%) rename {task-list/app => app}/assets/javascripts/application.js (100%) rename {task-list/app => app}/assets/javascripts/home.coffee (100%) rename {task-list/app => app}/assets/javascripts/tasks.coffee (100%) rename task-list/app/assets/stylesheets/tasks.scss => app/assets/stylesheets/application.css (78%) rename {task-list/app => app}/controllers/application_controller.rb (100%) rename {task-list/app => app}/controllers/concerns/.keep (100%) rename {task-list/app => app}/controllers/people_controller.rb (100%) rename {task-list/app => app}/controllers/tasks_controller.rb (100%) rename {task-list/app => app}/helpers/application_helper.rb (100%) rename {task-list/app => app}/helpers/home_helper.rb (100%) rename {task-list/app => app}/helpers/tasks_helper.rb (100%) rename {task-list/app => app}/mailers/.keep (100%) rename {task-list/app => app}/models/.keep (100%) rename {task-list/app => app}/models/concerns/.keep (100%) rename {task-list/app => app}/models/person.rb (100%) rename {task-list/app => app}/models/task.rb (100%) rename {task-list/app => app}/views/layouts/application.html.erb (100%) rename {task-list/app => app}/views/people/index.html.erb (84%) rename {task-list/app => app}/views/people/show.html.erb (74%) rename {task-list/app => app}/views/people/tasks.html.erb (91%) rename {task-list/app => app}/views/tasks/_input.html.erb (100%) rename {task-list/app => app}/views/tasks/add.html.erb (100%) rename {task-list/app => app}/views/tasks/completed.html.erb (100%) rename {task-list/app => app}/views/tasks/edit.html.erb (100%) rename {task-list/app => app}/views/tasks/index.html.erb (90%) rename {task-list/app => app}/views/tasks/show.html.erb (100%) rename {task-list/bin => bin}/bundle (100%) mode change 100755 => 100644 rename {task-list/bin => bin}/rails (100%) mode change 100755 => 100644 rename {task-list/bin => bin}/rake (100%) mode change 100755 => 100644 rename {task-list/bin => bin}/setup (100%) mode change 100755 => 100644 rename {task-list/bin => bin}/spring (100%) mode change 100755 => 100644 rename task-list/config.ru => config.ru (100%) rename {task-list/config => config}/application.rb (100%) rename {task-list/config => config}/boot.rb (100%) rename {task-list/config => config}/database.yml (100%) rename {task-list/config => config}/environment.rb (100%) rename {task-list/config => config}/environments/development.rb (100%) rename {task-list/config => config}/environments/production.rb (100%) rename {task-list/config => config}/environments/test.rb (100%) rename {task-list/config => config}/initializers/assets.rb (100%) rename {task-list/config => config}/initializers/backtrace_silencers.rb (100%) rename {task-list/config => config}/initializers/cookies_serializer.rb (100%) rename {task-list/config => config}/initializers/filter_parameter_logging.rb (100%) rename {task-list/config => config}/initializers/inflections.rb (100%) rename {task-list/config => config}/initializers/mime_types.rb (100%) rename {task-list/config => config}/initializers/session_store.rb (100%) rename {task-list/config => config}/initializers/wrap_parameters.rb (100%) rename {task-list/config => config}/locales/en.yml (100%) rename {task-list/config => config}/routes.rb (100%) rename {task-list/config => config}/secrets.yml (100%) create mode 100644 db/development.sqlite3 rename {task-list/db => db}/migrate/20160419203943_create_tasks.rb (100%) rename {task-list/db => db}/migrate/20160422231503_create_people.rb (100%) rename {task-list/db => db}/migrate/20160425180946_add_person_to_task.rb (100%) rename {task-list/db => db}/schema.rb (100%) rename {task-list/db => db}/seeds.rb (100%) rename {task-list/lib => lib}/assets/.keep (100%) rename {task-list/lib => lib}/tasks/.keep (100%) rename {task-list/log => log}/.keep (100%) create mode 100644 log/development.log rename {task-list/public => public}/404.html (100%) rename {task-list/public => public}/422.html (100%) rename {task-list/public => public}/500.html (100%) rename {task-list/public => public}/favicon.ico (100%) rename {task-list/public => public}/robots.txt (100%) delete mode 100644 seeds.rb delete mode 100644 task-list/.gitignore delete mode 100644 task-list/README.rdoc delete mode 100644 task-list/app/assets/stylesheets/application.css rename {task-list/test => test}/controllers/.keep (100%) rename {task-list/test => test}/controllers/home_controller_test.rb (100%) rename {task-list/test => test}/controllers/tasks_controller_test.rb (100%) rename {task-list/test => test}/fixtures/.keep (100%) rename {task-list/test => test}/fixtures/people.yml (100%) rename {task-list/test => test}/fixtures/tasks.yml (100%) rename {task-list/test => test}/helpers/.keep (100%) rename {task-list/test => test}/integration/.keep (100%) rename {task-list/test => test}/mailers/.keep (100%) rename {task-list/test => test}/models/.keep (100%) rename {task-list/test => test}/models/person_test.rb (100%) rename {task-list/test => test}/models/task_test.rb (100%) rename {task-list/test => test}/test_helper.rb (100%) rename {task-list/vendor => vendor}/assets/javascripts/.keep (100%) rename {task-list/vendor => vendor}/assets/stylesheets/.keep (100%) diff --git a/task-list/Gemfile b/Gemfile similarity index 100% rename from task-list/Gemfile rename to Gemfile diff --git a/task-list/Gemfile.lock b/Gemfile.lock similarity index 100% rename from task-list/Gemfile.lock rename to Gemfile.lock diff --git a/README.md b/README.md deleted file mode 100644 index 5d73b6980..000000000 --- a/README.md +++ /dev/null @@ -1,75 +0,0 @@ -# Task List Rails -Let's build our Task List in Rails. Solving the same problem--tracking tasks in a web app--will let us focus on following Rails conventions and learning how data flows through a Rails application. This project will enable us to keep track of and persist, add, edit and remove tasks. - -## Baseline -Once you've achieved this baseline, take a walk around the room and see if you can answer questions or help other folks. - -This project... - -- Will have our standard Github setup (fork this repo and clone to your machine) -- requires you to create a Rails 4.2.6 application - - create a controller for your `Tasks` - - create a `Task` model a migration. - - create the database schema and tables with `rake db:migrate` - - the `Task` model should include _at least_ a name, a description and a completion indicator - - conform to Rails conventions on naming and inflection - -Tinker with your Model in the `rails console` in order to ensure you have created your model and can interact with it as expected. - -## Wave 1 -This wave is where we will introduce the view layer to interact with our application via the browser. - -- Use the provided seed data to pre-populate your database with a given set of tasks. - - Hint: research `rake db:seed` -- Set up necessary controller(s) and route(s) that you will need in order to show a task from the database -- Create a root route for your application that directs users to the list of tasks - - Each task name in the list should link to a `show` action that will render a new view for the user. - - The `show` view should include the complete information about the task: name, description, completion status, and completion date. -- All markup in all views should have semantic relevance. -- Add some basic styles to your task list. - -## Wave 2 -In this wave we will add the first set of user interactivity and persistence. - -- Be able to create a new task: - - The home page should contain a link to Add a new task. This will give the user a form to fill out with the appropriate task fields. - - After the new task is added, the site should take the user back to the home page which displays the full list of tasks. The new task that was just added should be included in the full list of tasks. -- Be able to delete an existing task: - - Add a route and controller action whose responsibility is deleting a task (RESTful routes) - - On the home page, 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 - -## Wave 3 -In this wave we will extend the interactivity with users, allowing them to edit existing tasks in a couple of different ways. As always, follow _RESTful_ conventions when implementing these features. - -- Add the ability for the user to 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 the ability for the user to edit a task's details. - - Add an `edit` action that renders a form allowing the user to update all the fields of a task. - - Submitting the form from the `edit` action should _update_ the existing task; not create a new one. - - Research: ActiveRecord's `update` method. - - Link to the `edit` action from the task's `show` page. - - DRY up your code by reusing the view code from the `new` functionality - - Hint: Rendering _partials_ in Rails. - -## Final Wave! -In this wave, we explore creating ActiveRecord associations by creating `belongs_to` and `has_many` relationships. - -- Create a model & migration for a new Person object. - - at a minimum, a Person should have a name -- Create seed data to add at least three Person records to the database. -- Each Task in your database can be assigned to a Person, indicating that Person is responsible for completing the Task. - - Express the relationship between Person and Task using `belongs_to` and `has_many` - - Update your Task `index` and `show` actions to include displaying the Person's name to which the Task belongs. - - Update your Task's `new` and `edit` actions to allow for selecting an _existing_ Person to which the Task should be associated. -- Add a new people (the plural of Person) controller with the following routes and actions - - `index` action: Show a list of all people in the database. - - Link each Person's name to their `show` action. - - The index should include a count of how many _uncompleted_ tasks are assigned to each Person. - - `show` action: show all of the Person's information -- Create a custom route and action for showing a complete list of a Person's tasks, both complete and incomplete. - - The url of this page should look something like `http://localhost:5000/people/1/tasks`. - - Link to this action from a Person's `show` view. -- Deploy your completed app to Heroku. diff --git a/task-list/Rakefile b/Rakefile similarity index 100% rename from task-list/Rakefile rename to Rakefile diff --git a/task-list/app/assets/images/.keep b/app/assets/images/.keep similarity index 100% rename from task-list/app/assets/images/.keep rename to app/assets/images/.keep diff --git a/task-list/app/assets/images/cloudsart.jpg b/app/assets/images/cloudsart.jpg similarity index 100% rename from task-list/app/assets/images/cloudsart.jpg rename to app/assets/images/cloudsart.jpg diff --git a/task-list/app/assets/javascripts/application.js b/app/assets/javascripts/application.js similarity index 100% rename from task-list/app/assets/javascripts/application.js rename to app/assets/javascripts/application.js diff --git a/task-list/app/assets/javascripts/home.coffee b/app/assets/javascripts/home.coffee similarity index 100% rename from task-list/app/assets/javascripts/home.coffee rename to app/assets/javascripts/home.coffee diff --git a/task-list/app/assets/javascripts/tasks.coffee b/app/assets/javascripts/tasks.coffee similarity index 100% rename from task-list/app/assets/javascripts/tasks.coffee rename to app/assets/javascripts/tasks.coffee diff --git a/task-list/app/assets/stylesheets/tasks.scss b/app/assets/stylesheets/application.css similarity index 78% rename from task-list/app/assets/stylesheets/tasks.scss rename to app/assets/stylesheets/application.css index 3aa05448e..8538dc5b3 100644 --- a/task-list/app/assets/stylesheets/tasks.scss +++ b/app/assets/stylesheets/application.css @@ -45,11 +45,10 @@ table.all-tasks { background-color: rgba(255, 255, 255, 0.35); border: .2rem solid #03577B; // border-radius: 5rem; - width:40%; - margin-left:30%; - margin-right:30%; + width:50%; + margin-left:25%; + margin-right:25%; border-spacing: 0rem; - } .center { @@ -91,16 +90,17 @@ input[type=text] { border: .2rem solid #03577B; border-radius: 2.5rem; width:20%; - // margin: 8px 0; -} - -// input[type=button], input[type=submit], input[type=reset] { -// background-color: lightblue; -// border: .2rem solid #03577B; -// font-size: .75rem; -// color: navy; -// padding: 16px 32px; -// text-decoration: none; -// margin: 4px 2px; -// cursor: pointer; -// } + margin: 8px 0; +} + + input[type=button], input[type=submit], input[type=reset] { + background-color: white; + border: .2rem solid #03577B; + border-radius: 2.5rem; + font-size: .75rem; + color: black; + padding: 10px 32px; + text-decoration: none; + margin: 4px 2px; + cursor: pointer; +} diff --git a/task-list/app/controllers/application_controller.rb b/app/controllers/application_controller.rb similarity index 100% rename from task-list/app/controllers/application_controller.rb rename to app/controllers/application_controller.rb diff --git a/task-list/app/controllers/concerns/.keep b/app/controllers/concerns/.keep similarity index 100% rename from task-list/app/controllers/concerns/.keep rename to app/controllers/concerns/.keep diff --git a/task-list/app/controllers/people_controller.rb b/app/controllers/people_controller.rb similarity index 100% rename from task-list/app/controllers/people_controller.rb rename to app/controllers/people_controller.rb diff --git a/task-list/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb similarity index 100% rename from task-list/app/controllers/tasks_controller.rb rename to app/controllers/tasks_controller.rb diff --git a/task-list/app/helpers/application_helper.rb b/app/helpers/application_helper.rb similarity index 100% rename from task-list/app/helpers/application_helper.rb rename to app/helpers/application_helper.rb diff --git a/task-list/app/helpers/home_helper.rb b/app/helpers/home_helper.rb similarity index 100% rename from task-list/app/helpers/home_helper.rb rename to app/helpers/home_helper.rb diff --git a/task-list/app/helpers/tasks_helper.rb b/app/helpers/tasks_helper.rb similarity index 100% rename from task-list/app/helpers/tasks_helper.rb rename to app/helpers/tasks_helper.rb diff --git a/task-list/app/mailers/.keep b/app/mailers/.keep similarity index 100% rename from task-list/app/mailers/.keep rename to app/mailers/.keep diff --git a/task-list/app/models/.keep b/app/models/.keep similarity index 100% rename from task-list/app/models/.keep rename to app/models/.keep diff --git a/task-list/app/models/concerns/.keep b/app/models/concerns/.keep similarity index 100% rename from task-list/app/models/concerns/.keep rename to app/models/concerns/.keep diff --git a/task-list/app/models/person.rb b/app/models/person.rb similarity index 100% rename from task-list/app/models/person.rb rename to app/models/person.rb diff --git a/task-list/app/models/task.rb b/app/models/task.rb similarity index 100% rename from task-list/app/models/task.rb rename to app/models/task.rb diff --git a/task-list/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb similarity index 100% rename from task-list/app/views/layouts/application.html.erb rename to app/views/layouts/application.html.erb diff --git a/task-list/app/views/people/index.html.erb b/app/views/people/index.html.erb similarity index 84% rename from task-list/app/views/people/index.html.erb rename to app/views/people/index.html.erb index 9d11b3000..113470c3d 100644 --- a/task-list/app/views/people/index.html.erb +++ b/app/views/people/index.html.erb @@ -4,7 +4,7 @@ Name - Number of Unfinished Tasks + Tasks Left <% @all_people.each do |person| %> @@ -12,7 +12,7 @@ <%= link_to person.name, person_path(person.id) %> - + <% tasks_to_do = person.tasks.where("tasks.completed_at IS NULL") %> <%= tasks_to_do.length %> diff --git a/task-list/app/views/people/show.html.erb b/app/views/people/show.html.erb similarity index 74% rename from task-list/app/views/people/show.html.erb rename to app/views/people/show.html.erb index 7e7a9892e..46d1442d9 100644 --- a/task-list/app/views/people/show.html.erb +++ b/app/views/people/show.html.erb @@ -11,9 +11,15 @@ <% done_tasks = @selected_person.tasks.where("tasks.completed_at IS NOT NULL") %> - <%= @selected_person.name %> - <%= tasks_to_do.name %> - <%= done_tasks.name %> + + <%= @selected_person.name %> + + + <%= tasks_to_do.length %> + + + <%= done_tasks.length %> + diff --git a/task-list/app/views/people/tasks.html.erb b/app/views/people/tasks.html.erb similarity index 91% rename from task-list/app/views/people/tasks.html.erb rename to app/views/people/tasks.html.erb index 16b8c6ffd..84137beb9 100644 --- a/task-list/app/views/people/tasks.html.erb +++ b/app/views/people/tasks.html.erb @@ -16,7 +16,11 @@ <% tasks_to_do = @selected_person.tasks.where("tasks.completed_at IS NULL") %> <% tasks_to_do.each do |task| %> - <%= task.title %> + + + <%= task.title %> + + <% end %> diff --git a/task-list/app/views/tasks/_input.html.erb b/app/views/tasks/_input.html.erb similarity index 100% rename from task-list/app/views/tasks/_input.html.erb rename to app/views/tasks/_input.html.erb diff --git a/task-list/app/views/tasks/add.html.erb b/app/views/tasks/add.html.erb similarity index 100% rename from task-list/app/views/tasks/add.html.erb rename to app/views/tasks/add.html.erb diff --git a/task-list/app/views/tasks/completed.html.erb b/app/views/tasks/completed.html.erb similarity index 100% rename from task-list/app/views/tasks/completed.html.erb rename to app/views/tasks/completed.html.erb diff --git a/task-list/app/views/tasks/edit.html.erb b/app/views/tasks/edit.html.erb similarity index 100% rename from task-list/app/views/tasks/edit.html.erb rename to app/views/tasks/edit.html.erb diff --git a/task-list/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb similarity index 90% rename from task-list/app/views/tasks/index.html.erb rename to app/views/tasks/index.html.erb index ed5144c77..558344b30 100644 --- a/task-list/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -4,7 +4,7 @@ To-Do - Person + Person Delete Completed Edit @@ -17,7 +17,7 @@ <%= link_to task.title, task_path(task.id) %> - + <% if task.person_id != nil %> <% num = task.person_id %> <%= Person.find(num).name %> @@ -32,7 +32,7 @@ <%= button_to "Just Did It!", task_path(task.id), method: :patch %> - + <%= link_to "Edit", edit_tasks_path(task.id) %> diff --git a/task-list/app/views/tasks/show.html.erb b/app/views/tasks/show.html.erb similarity index 100% rename from task-list/app/views/tasks/show.html.erb rename to app/views/tasks/show.html.erb diff --git a/task-list/bin/bundle b/bin/bundle old mode 100755 new mode 100644 similarity index 100% rename from task-list/bin/bundle rename to bin/bundle diff --git a/task-list/bin/rails b/bin/rails old mode 100755 new mode 100644 similarity index 100% rename from task-list/bin/rails rename to bin/rails diff --git a/task-list/bin/rake b/bin/rake old mode 100755 new mode 100644 similarity index 100% rename from task-list/bin/rake rename to bin/rake diff --git a/task-list/bin/setup b/bin/setup old mode 100755 new mode 100644 similarity index 100% rename from task-list/bin/setup rename to bin/setup diff --git a/task-list/bin/spring b/bin/spring old mode 100755 new mode 100644 similarity index 100% rename from task-list/bin/spring rename to bin/spring diff --git a/task-list/config.ru b/config.ru similarity index 100% rename from task-list/config.ru rename to config.ru diff --git a/task-list/config/application.rb b/config/application.rb similarity index 100% rename from task-list/config/application.rb rename to config/application.rb diff --git a/task-list/config/boot.rb b/config/boot.rb similarity index 100% rename from task-list/config/boot.rb rename to config/boot.rb diff --git a/task-list/config/database.yml b/config/database.yml similarity index 100% rename from task-list/config/database.yml rename to config/database.yml diff --git a/task-list/config/environment.rb b/config/environment.rb similarity index 100% rename from task-list/config/environment.rb rename to config/environment.rb diff --git a/task-list/config/environments/development.rb b/config/environments/development.rb similarity index 100% rename from task-list/config/environments/development.rb rename to config/environments/development.rb diff --git a/task-list/config/environments/production.rb b/config/environments/production.rb similarity index 100% rename from task-list/config/environments/production.rb rename to config/environments/production.rb diff --git a/task-list/config/environments/test.rb b/config/environments/test.rb similarity index 100% rename from task-list/config/environments/test.rb rename to config/environments/test.rb diff --git a/task-list/config/initializers/assets.rb b/config/initializers/assets.rb similarity index 100% rename from task-list/config/initializers/assets.rb rename to config/initializers/assets.rb diff --git a/task-list/config/initializers/backtrace_silencers.rb b/config/initializers/backtrace_silencers.rb similarity index 100% rename from task-list/config/initializers/backtrace_silencers.rb rename to config/initializers/backtrace_silencers.rb diff --git a/task-list/config/initializers/cookies_serializer.rb b/config/initializers/cookies_serializer.rb similarity index 100% rename from task-list/config/initializers/cookies_serializer.rb rename to config/initializers/cookies_serializer.rb diff --git a/task-list/config/initializers/filter_parameter_logging.rb b/config/initializers/filter_parameter_logging.rb similarity index 100% rename from task-list/config/initializers/filter_parameter_logging.rb rename to config/initializers/filter_parameter_logging.rb diff --git a/task-list/config/initializers/inflections.rb b/config/initializers/inflections.rb similarity index 100% rename from task-list/config/initializers/inflections.rb rename to config/initializers/inflections.rb diff --git a/task-list/config/initializers/mime_types.rb b/config/initializers/mime_types.rb similarity index 100% rename from task-list/config/initializers/mime_types.rb rename to config/initializers/mime_types.rb diff --git a/task-list/config/initializers/session_store.rb b/config/initializers/session_store.rb similarity index 100% rename from task-list/config/initializers/session_store.rb rename to config/initializers/session_store.rb diff --git a/task-list/config/initializers/wrap_parameters.rb b/config/initializers/wrap_parameters.rb similarity index 100% rename from task-list/config/initializers/wrap_parameters.rb rename to config/initializers/wrap_parameters.rb diff --git a/task-list/config/locales/en.yml b/config/locales/en.yml similarity index 100% rename from task-list/config/locales/en.yml rename to config/locales/en.yml diff --git a/task-list/config/routes.rb b/config/routes.rb similarity index 100% rename from task-list/config/routes.rb rename to config/routes.rb diff --git a/task-list/config/secrets.yml b/config/secrets.yml similarity index 100% rename from task-list/config/secrets.yml rename to config/secrets.yml diff --git a/db/development.sqlite3 b/db/development.sqlite3 new file mode 100644 index 0000000000000000000000000000000000000000..beac36cc7f38729799086d518abd76528b287c42 GIT binary patch literal 24576 zcmeI4&2Jk;6u{SZ6DMvQ2dc;lw8}IEQY-alW@q*jwZU!OHZ)Dz)Bz%a(rvtrmn7cQ zUMB=jfeUB&e~`E!gv1Gn3kYsVl`3u=xbbEkJ9Zoc0wD@|j@RCux9`n+zj<%s)sB7t z-hv-`ASr^ys8AFmhJO ze3BU&Ih+1E{X)Ofu^kB@0VIF~kN^@u0!RP}Ac232z`+NJWHy_PeY6s~54XI~t#8(& zms8i4i-l5=lnPfDiexHkn<5vd{PGl;Un~`G7MIE0<@q~>WZh2E=*R8Er+*+rk?A6z6{!Zuz)wUcI)`RUG@Wd;xxnWm(&2w9= zW!MY-ZLiZ@V@I|&wN8@nc(r;^U6TR$)zI7UYPkbCkjzd@#6EmAihjonpy%f6V0Zk@ z#=iuh>TVy!FXQ_=apdlv8qChj#8xAR>yNkK%5JUhJ#Ki_b??~WKvxLIgcqe-mq0TI zsrMvGftmkz3gixw@nrV$Z0umxua>>{8dV>#t<~2n-nP58?QhgvnTqwEhQuMqmBsmc zD@Dlu>&3UoR6q48vb0F1dW^`_*@X<0$)4MaC9|{ONU}MKf9OHHYb1Z)cu%F}(lEk_ z%vVb0=gjx;h7Tlw1dsp{Kmter2_OL^fCP{L5LEDTG#*S)Mv_Ysx*}TCjIuvuc^|=$D_NcA4hVhza4#g z^p|?`84ev?Ljp(u2_OL^fCP|0i@<}IlFInGxz$&aN;W-LC~W$BeqDb0$y1TnG{S@< zbVt)ko|=?)2sGvh;ZR-GI5*jGiBtiJWpVofiFzm$wu742+Bys|?g;L1-rEC>1XMNQ zwv2#VF>R-`ri81)5SkEclS$>wIdHz}?S)=Flv~HyvIEW0PwoJs05h7!Oszvjb|6($ z%b+Hw@bNEo=FHsf>Ex|x;B-zY6kx^a`sN9p0TvzlvsBJ0WvtVt=5XdPs&Z-=mZ+Qu zr)Rk<%U5uqq8RnN~);3%`M$HeN8!k zVH$cWLN~-EawYmBf1^?J2pk8E@S!@SOpe0|!)~?Ol*^sAMV&CiVWz|BF(-7QX^t=* zU8vl$r5mj=0ts)bsD`d_VUOC%r@9W{VlYUN3uMm^E2O!myc|eZcDCLp?>6coi4Hq$ zY0?&hP?;&X*P@O!3u0s-+3bZpYLsX(W@%lI-G^zfmDK z{9TXS54OFBL3y971`TpOs7{CEb~V^zwrxWy?xT0p($2 z`{WJ3>;>c|Ea->eY?i08qbTbkzmLs*UACBInC*n8{WtI@4t4?8_ zlPW6X7PHKF#!+sJkAtVtWN<8n56k_eOl?jCElKO&3%q~v;v`s;84FWfl(_Px6{N=G zOhFBYT99*0=T?8oUOcJfOaM}JBnFghp>W3!*DIa3*|`JjL|}P~Aq<^$En(`GT!}~eS8Mxj^<;gaTU|HskMyPF aa%?~uFTet^j#W)?|G#|_x2-ocRNJ_;3 literal 0 HcmV?d00001 diff --git a/task-list/db/migrate/20160419203943_create_tasks.rb b/db/migrate/20160419203943_create_tasks.rb similarity index 100% rename from task-list/db/migrate/20160419203943_create_tasks.rb rename to db/migrate/20160419203943_create_tasks.rb diff --git a/task-list/db/migrate/20160422231503_create_people.rb b/db/migrate/20160422231503_create_people.rb similarity index 100% rename from task-list/db/migrate/20160422231503_create_people.rb rename to db/migrate/20160422231503_create_people.rb diff --git a/task-list/db/migrate/20160425180946_add_person_to_task.rb b/db/migrate/20160425180946_add_person_to_task.rb similarity index 100% rename from task-list/db/migrate/20160425180946_add_person_to_task.rb rename to db/migrate/20160425180946_add_person_to_task.rb diff --git a/task-list/db/schema.rb b/db/schema.rb similarity index 100% rename from task-list/db/schema.rb rename to db/schema.rb diff --git a/task-list/db/seeds.rb b/db/seeds.rb similarity index 100% rename from task-list/db/seeds.rb rename to db/seeds.rb diff --git a/task-list/lib/assets/.keep b/lib/assets/.keep similarity index 100% rename from task-list/lib/assets/.keep rename to lib/assets/.keep diff --git a/task-list/lib/tasks/.keep b/lib/tasks/.keep similarity index 100% rename from task-list/lib/tasks/.keep rename to lib/tasks/.keep diff --git a/task-list/log/.keep b/log/.keep similarity index 100% rename from task-list/log/.keep rename to log/.keep diff --git a/log/development.log b/log/development.log new file mode 100644 index 000000000..be1043ce5 --- /dev/null +++ b/log/development.log @@ -0,0 +1,54799 @@ +  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.3ms) select sqlite_version(*) +  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateTasks (20160419203943) +  (0.1ms) begin transaction +  (0.4ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar NOT NULL, "description" varchar, "completed_at" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) + SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160419203943"]] +  (0.5ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.2ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Add first task"], ["description", "See if this databse even works."], ["created_at", "2016-04-19 20:44:31.923422"], ["updated_at", "2016-04-19 20:44:31.923422"]] +  (1.5ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +  (0.2ms) begin transaction + SQL (0.8ms) INSERT INTO "tasks" ("description", "created_at", "updated_at") VALUES (?, ?, ?) [["description", "test if null titles can be added"], ["created_at", "2016-04-19 20:54:05.131268"], ["updated_at", "2016-04-19 20:54:05.131268"]] +  (0.1ms) rollback transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + Task Load (1.1ms) SELECT "tasks".* FROM "tasks" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("title", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "The First Task"], ["description", ""], ["completed_at", "2007-05-17 21:53:45 -0700"], ["created_at", "2016-04-19 20:58:58.808967"], ["updated_at", "2016-04-19 20:58:58.808967"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Go to Brunch"], ["description", ""], ["created_at", "2016-04-19 20:58:58.812601"], ["updated_at", "2016-04-19 20:58:58.812601"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("title", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Go to Lunch"], ["description", ""], ["completed_at", "1992-02-06 04:41:14 -0800"], ["created_at", "2016-04-19 20:58:58.814740"], ["updated_at", "2016-04-19 20:58:58.814740"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Go to Second Lunch"], ["description", ""], ["created_at", "2016-04-19 20:58:58.816748"], ["updated_at", "2016-04-19 20:58:58.816748"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("title", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Play Video Games"], ["description", ""], ["completed_at", "1991-09-08 16:12:45 -0700"], ["created_at", "2016-04-19 20:58:58.818679"], ["updated_at", "2016-04-19 20:58:58.818679"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("title", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "High Five Somebody You Don't Know"], ["description", ""], ["completed_at", "1999-08-19 01:57:51 -0700"], ["created_at", "2016-04-19 20:58:58.821061"], ["updated_at", "2016-04-19 20:58:58.821061"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Plant Flowers"], ["description", ""], ["completed_at", "1987-12-14 11:09:45 -0800"], ["created_at", "2016-04-19 20:58:58.824893"], ["updated_at", "2016-04-19 20:58:58.824893"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Call Mom"], ["description", ""], ["created_at", "2016-04-19 20:58:58.827534"], ["updated_at", "2016-04-19 20:58:58.827534"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.6ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "She worries, you know."], ["description", ""], ["created_at", "2016-04-19 20:58:58.830456"], ["updated_at", "2016-04-19 20:58:58.830456"]] +  (1.1ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("title", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Nap."], ["description", ""], ["completed_at", "2003-04-06 07:56:59 -0700"], ["created_at", "2016-04-19 20:58:58.835306"], ["updated_at", "2016-04-19 20:58:58.835306"]] +  (0.5ms) commit transaction + Task Load (1.2ms) SELECT "tasks".* FROM "tasks" + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] +  (1.4ms) commit transaction + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" +  (0.2ms) SELECT COUNT(*) FROM "tasks" + + +Started GET "/" for ::1 at 2016-04-19 14:43:47 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by Rails::WelcomeController#index as HTML + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/railties-4.2.6/lib/rails/templates/rails/welcome/index.html.erb (1.7ms) +Completed 200 OK in 17ms (Views: 8.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-19 14:43:48 -0700 +Processing by Rails::WelcomeController#index as HTML + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/railties-4.2.6/lib/rails/templates/rails/welcome/index.html.erb (0.0ms) +Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-19 14:43:48 -0700 +Processing by Rails::WelcomeController#index as HTML + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/railties-4.2.6/lib/rails/templates/rails/welcome/index.html.erb (0.3ms) +Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-19 14:43:49 -0700 +Processing by Rails::WelcomeController#index as HTML + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/railties-4.2.6/lib/rails/templates/rails/welcome/index.html.erb (0.0ms) +Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-19 14:43:50 -0700 +Processing by Rails::WelcomeController#index as HTML + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/railties-4.2.6/lib/rails/templates/rails/welcome/index.html.erb (0.0ms) +Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-19 14:44:01 -0700 +Processing by Rails::WelcomeController#index as HTML + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/railties-4.2.6/lib/rails/templates/rails/welcome/index.html.erb (0.0ms) +Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-19 14:44:02 -0700 +Processing by Rails::WelcomeController#index as HTML + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/railties-4.2.6/lib/rails/templates/rails/welcome/index.html.erb (0.0ms) +Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-19 14:45:13 -0700 +Processing by HomeController#index as HTML + Rendered home/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 1436ms (Views: 1435.9ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-19 14:45:15 -0700 +Processing by HomeController#index as HTML + Rendered home/index.html.erb within layouts/application (0.1ms) +Completed 200 OK in 22ms (Views: 21.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-19 14:45:15 -0700 +Processing by HomeController#index as HTML + Rendered home/index.html.erb within layouts/application (0.0ms) +Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 14:45:15 -0700 + + +Started GET "/assets/home.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 14:45:15 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 14:45:15 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 14:45:15 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 14:45:15 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 14:45:15 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 14:45:15 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 14:45:15 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 14:45:15 -0700 + + +Started GET "/" for ::1 at 2016-04-19 14:45:16 -0700 +Processing by HomeController#index as HTML + Rendered home/index.html.erb within layouts/application (0.0ms) +Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-19 14:45:16 -0700 +Processing by HomeController#index as HTML + Rendered home/index.html.erb within layouts/application (0.0ms) +Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-19 14:47:00 -0700 +DEPRECATION WARNING: Defining a route where `to` is a controller without an action is deprecated. Please change `to: 'index'` to `controller: 'index'`. (called from block in at /Users/annamason/C5/projects/TaskListRails/task-list/config/routes.rb:3) + +ArgumentError (Missing :action key on routes definition, please check your routes.): + config/routes.rb:3:in `block in ' + config/routes.rb:1:in `' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (54.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (59.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (116.4ms) + + +Started GET "/" for ::1 at 2016-04-19 14:47:01 -0700 + +ActionController::RoutingError (No route matches [GET] "/"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (49.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.8ms) + + +Started GET "/" for ::1 at 2016-04-19 14:47:06 -0700 +Processing by HomeController#index as HTML + Rendered home/index.html.erb within layouts/application (0.1ms) +Completed 200 OK in 19ms (Views: 18.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-19 14:47:06 -0700 +Processing by HomeController#index as HTML + Rendered home/index.html.erb within layouts/application (0.0ms) +Completed 200 OK in 14ms (Views: 14.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-19 14:49:12 -0700 +Processing by HomeController#index as HTML + Rendered home/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.0ms) + + +Started GET "/taskadder" for ::1 at 2016-04-19 14:49:13 -0700 + +ActionController::RoutingError (No route matches [GET] "/taskadder"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (64.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.3ms) + + +Started GET "/taskadder" for ::1 at 2016-04-19 14:49:13 -0700 + +ActionController::RoutingError (No route matches [GET] "/taskadder"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (55.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.9ms) + + +Started GET "/" for ::1 at 2016-04-19 14:50:10 -0700 +Processing by HomeController#index as HTML + Rendered home/index.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.0ms) + + +Started GET "/taskadder" for ::1 at 2016-04-19 14:50:11 -0700 +Processing by HomeController#taskadder as HTML + Rendered home/taskadder.html.erb within layouts/application (0.3ms) +Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.0ms) + + +Started GET "/taskadder" for ::1 at 2016-04-19 14:50:12 -0700 +Processing by HomeController#taskadder as HTML + Rendered home/taskadder.html.erb within layouts/application (0.2ms) +Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-19 14:56:40 -0700 +Processing by HomeController#index as HTML + Rendered home/index.html.erb within layouts/application (0.1ms) +Completed 200 OK in 21ms (Views: 20.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-19 15:02:00 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (12.2ms) +Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.5ms) + +ActionView::Template::Error (undefined method `drop' for #): + 12: + 13: <% @entire_list.each do |array| %> + 14: + 15: <% array.drop(1).each do |item|%> + 16: <%= item %> + 17: <% end %> + 18: + app/views/home/index.html.erb:15:in `block in _app_views_home_index_html_erb___3883528749916737152_70287392524760' + app/views/home/index.html.erb:13:in `_app_views_home_index_html_erb___3883528749916737152_70287392524760' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (53.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.4ms) + + +Started GET "/" for ::1 at 2016-04-19 15:02:01 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (6.2ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `drop' for #): + 12: + 13: <% @entire_list.each do |array| %> + 14: + 15: <% array.drop(1).each do |item|%> + 16: <%= item %> + 17: <% end %> + 18: + app/views/home/index.html.erb:15:in `block in _app_views_home_index_html_erb___3883528749916737152_70287392524760' + app/views/home/index.html.erb:13:in `_app_views_home_index_html_erb___3883528749916737152_70287392524760' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (48.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.3ms) + + +Started GET "/" for ::1 at 2016-04-19 15:02:02 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (6.4ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `drop' for #): + 12: + 13: <% @entire_list.each do |array| %> + 14: + 15: <% array.drop(1).each do |item|%> + 16: <%= item %> + 17: <% end %> + 18: + app/views/home/index.html.erb:15:in `block in _app_views_home_index_html_erb___3883528749916737152_70287392524760' + app/views/home/index.html.erb:13:in `_app_views_home_index_html_erb___3883528749916737152_70287392524760' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (11.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (54.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.9ms) + + +Started GET "/" for ::1 at 2016-04-19 15:02:03 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (7.8ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `drop' for #): + 12: + 13: <% @entire_list.each do |array| %> + 14: + 15: <% array.drop(1).each do |item|%> + 16: <%= item %> + 17: <% end %> + 18: + app/views/home/index.html.erb:15:in `block in _app_views_home_index_html_erb___3883528749916737152_70287392524760' + app/views/home/index.html.erb:13:in `_app_views_home_index_html_erb___3883528749916737152_70287392524760' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (52.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.7ms) + + +Started GET "/" for ::1 at 2016-04-19 15:02:26 -0700 +Processing by HomeController#index as HTML + Rendered home/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-19 15:02:27 -0700 +Processing by HomeController#index as HTML + Rendered home/index.html.erb within layouts/application (0.1ms) +Completed 200 OK in 13ms (Views: 12.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-19 15:02:28 -0700 +Processing by HomeController#index as HTML + Rendered home/index.html.erb within layouts/application (0.1ms) +Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-19 15:04:37 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (10.7ms) +Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.5ms) + +ActionView::Template::Error (undefined method `name' for #): + 4: + 5:
    + 6: <% @all_tasks.each do |task| %> + 7:
  • <%= task.name %>
  • + 8: <% end %> + 9:
+ app/views/home/index.html.erb:7:in `block in _app_views_home_index_html_erb___3883528749916737152_70287431199200' + app/views/home/index.html.erb:6:in `_app_views_home_index_html_erb___3883528749916737152_70287431199200' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.4ms) + + +Started GET "/" for ::1 at 2016-04-19 15:04:38 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (5.0ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `name' for #): + 4: + 5:
    + 6: <% @all_tasks.each do |task| %> + 7:
  • <%= task.name %>
  • + 8: <% end %> + 9:
+ app/views/home/index.html.erb:7:in `block in _app_views_home_index_html_erb___3883528749916737152_70287431199200' + app/views/home/index.html.erb:6:in `_app_views_home_index_html_erb___3883528749916737152_70287431199200' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (53.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:04:39 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (6.3ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined method `name' for #): + 4: + 5:
    + 6: <% @all_tasks.each do |task| %> + 7:
  • <%= task.name %>
  • + 8: <% end %> + 9:
+ app/views/home/index.html.erb:7:in `block in _app_views_home_index_html_erb___3883528749916737152_70287431199200' + app/views/home/index.html.erb:6:in `_app_views_home_index_html_erb___3883528749916737152_70287431199200' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (10.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (57.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.3ms) + + +Started GET "/" for ::1 at 2016-04-19 15:05:05 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:05:06 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:10:46 -0700 +Processing by HomeController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (8.7ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.4ms) + +ActionView::Template::Error (undefined method `drop' for #): + 19: + 20: <% @all_tasks.each do |all_tasks| %> + 21: + 22: <% all_tasks.drop(1).each do |task|%> + 23: <%= task %> + 24: <% end %> + 25: + app/views/home/index.html.erb:22:in `block in _app_views_home_index_html_erb___3883528749916737152_70287432543260' + app/views/home/index.html.erb:20:in `_app_views_home_index_html_erb___3883528749916737152_70287432543260' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (53.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.3ms) + + +Started GET "/" for ::1 at 2016-04-19 15:10:47 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (6.1ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `drop' for #): + 19: + 20: <% @all_tasks.each do |all_tasks| %> + 21: + 22: <% all_tasks.drop(1).each do |task|%> + 23: <%= task %> + 24: <% end %> + 25: + app/views/home/index.html.erb:22:in `block in _app_views_home_index_html_erb___3883528749916737152_70287432543260' + app/views/home/index.html.erb:20:in `_app_views_home_index_html_erb___3883528749916737152_70287432543260' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (52.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.5ms) + + +Started GET "/" for ::1 at 2016-04-19 15:12:29 -0700 +Processing by HomeController#index as HTML + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/annamason/C5/projects/TaskListRails/task-list/app/views/home/index.html.erb:39: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/home/index.html.erb:39: syntax error, unexpected keyword_ensure, expecting end-of-input + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (49.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.3ms) + + +Started GET "/" for ::1 at 2016-04-19 15:12:37 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (5.7ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `name' for #): + 19: + 20: <% @all_tasks.each do |task| %> + 21: + 22: <%= task.name %> + 23: <% end %> + 24: + 25: + 19: + app/views/home/index.html.erb:16:in `_app_views_home_index_html_erb___3883528749916737152_70287392492300' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (56.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (51.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (111.2ms) + + +Started GET "/" for ::1 at 2016-04-19 15:30:16 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:30:17 -0700 + +ActionController::RoutingError (No route matches [GET] "/The%20First%20Task"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (69.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (49.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (105.5ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:30:18 -0700 + +ActionController::RoutingError (No route matches [GET] "/The%20First%20Task"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (65.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (105.8ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-19 15:30:25 -0700 + +ActionController::RoutingError (No route matches [GET] "/High%20Five%20Somebody%20You%20Don't%20Know"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (65.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (48.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (103.6ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-19 15:30:25 -0700 + +ActionController::RoutingError (No route matches [GET] "/High%20Five%20Somebody%20You%20Don't%20Know"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (64.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (49.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (117.5ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-19 15:50:32 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered home/single_task.html.erb within layouts/application (37.3ms) +Completed 500 Internal Server Error in 48ms (ActiveRecord: 0.9ms) + +ActionView::Template::Error (undefined local variable or method `selected_task' for #<#:0x007fda2308c078> +Did you mean? @selected_task + select_date + select_tag): + 6: + 7: + 8: + 9: <%= selected_task.title %> + 10: <%= selected_task.description %> + 11: <%= selected_task.completed_at %> + 12: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb__4037805520618563232_70287430891080' + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (50.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.2ms) + + +Started GET "/" for ::1 at 2016-04-19 15:50:34 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.2ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-19 15:50:36 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered home/single_task.html.erb within layouts/application (43.3ms) +Completed 500 Internal Server Error in 47ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined local variable or method `selected_task' for #<#:0x007fda20b34668> +Did you mean? @selected_task + select_date + select_tag): + 6: + 7: + 8: + 9: <%= selected_task.title %> + 10: <%= selected_task.description %> + 11: <%= selected_task.completed_at %> + 12: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb__4037805520618563232_70287414094560' + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (54.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.3ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-19 15:50:37 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered home/single_task.html.erb within layouts/application (35.1ms) +Completed 500 Internal Server Error in 39ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined local variable or method `selected_task' for #<#:0x007fda230fd228> +Did you mean? @selected_task + select_date + select_tag): + 6: + 7: + 8: + 9: <%= selected_task.title %> + 10: <%= selected_task.description %> + 11: <%= selected_task.completed_at %> + 12: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb__4037805520618563232_70287430891080' + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (50.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.9ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:50:56 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (33.2ms) +Completed 500 Internal Server Error in 37ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined local variable or method `selected_task' for #<#:0x007fda1e178a90> +Did you mean? @selected_task + select_date + select_tag): + 6: + 7: + 8: + 9: <%= selected_task.title %> + 10: <%= selected_task.description %> + 11: <%= selected_task.completed_at %> + 12: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb__4037805520618563232_70287414094560' + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (57.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.6ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:50:57 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (28.3ms) +Completed 500 Internal Server Error in 33ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined local variable or method `selected_task' for #<#:0x007fda22c4c760> +Did you mean? @selected_task + select_date + select_tag): + 6: + 7: + 8: + 9: <%= selected_task.title %> + 10: <%= selected_task.description %> + 11: <%= selected_task.completed_at %> + 12: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb__4037805520618563232_70287430891080' + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (52.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (98.6ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:52:12 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (36.1ms) +Completed 500 Internal Server Error in 51ms (ActiveRecord: 0.8ms) + +ActionView::Template::Error (undefined local variable or method `selected_task' for #<#:0x007fda22d6f390> +Did you mean? @selected_task + select_date + select_tag): + 6: + 7: + 8: + 9: <%= selected_task.title %> + 10: <%= selected_task.description %> + 11: <%= selected_task.completed_at %> + 12: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb__4037805520618563232_70287430891080' + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (53.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.5ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:53:46 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.8ms) SELECT "tasks".* FROM "tasks" WHERE "title"."controller" = 'home' AND "title"."action" = 'single_task' AND "title"."title" = 'The First Task' + Task Load (1.0ms) SELECT "tasks".* FROM "tasks" WHERE "title"."controller" = 'home' AND "title"."action" = 'single_task' AND "title"."title" = 'The First Task' + Rendered home/single_task.html.erb within layouts/application (23.2ms) +Completed 500 Internal Server Error in 32ms (ActiveRecord: 2.1ms) + +ActionView::Template::Error (undefined local variable or method `selected_task' for #<#:0x007fda20b94c70> +Did you mean? @selected_task + select_date + select_tag): + 6: + 7: + 8: + 9: <%= selected_task.title %> + 10: <%= selected_task.description %> + 11: <%= selected_task.completed_at %> + 12: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb__4037805520618563232_70287414094560' + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:53:47 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.8ms) SELECT "tasks".* FROM "tasks" WHERE "title"."controller" = 'home' AND "title"."action" = 'single_task' AND "title"."title" = 'The First Task' + Task Load (0.7ms) SELECT "tasks".* FROM "tasks" WHERE "title"."controller" = 'home' AND "title"."action" = 'single_task' AND "title"."title" = 'The First Task' + Rendered home/single_task.html.erb within layouts/application (18.9ms) +Completed 500 Internal Server Error in 22ms (ActiveRecord: 1.5ms) + +ActionView::Template::Error (undefined local variable or method `selected_task' for #<#:0x007fda234a8210> +Did you mean? @selected_task + select_date + select_tag): + 6: + 7: + 8: + 9: <%= selected_task.title %> + 10: <%= selected_task.description %> + 11: <%= selected_task.completed_at %> + 12: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb__4037805520618563232_70287430891080' + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.6ms) + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? [["title", "hi"]] + + +Started GET "/" for ::1 at 2016-04-19 15:55:08 -0700 + +ActionController::RoutingError (undefined local variable or method `params' for main:Object): + app/controllers/home_controller.rb:13:in `' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (60.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.7ms) + + +Started GET "/" for ::1 at 2016-04-19 15:55:11 -0700 + +ActionController::RoutingError (undefined local variable or method `params' for main:Object): + app/controllers/home_controller.rb:13:in `' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (58.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.3ms) + + +Started GET "/" for ::1 at 2016-04-19 15:55:22 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 22ms (Views: 19.2ms | ActiveRecord: 0.8ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:55:24 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (33.7ms) +Completed 500 Internal Server Error in 39ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined local variable or method `selected_task' for #<#:0x007fda209e87f0> +Did you mean? @selected_task + select_date + select_tag): + 6: + 7: + 8: + 9: <%= selected_task.title %> + 10: <%= selected_task.description %> + 11: <%= selected_task.completed_at %> + 12: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb__4037805520618563232_70287414094560' + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (52.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (52.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (101.9ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:55:24 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (31.7ms) +Completed 500 Internal Server Error in 36ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined local variable or method `selected_task' for #<#:0x007fda24dd8230> +Did you mean? @selected_task + select_date + select_tag): + 6: + 7: + 8: + 9: <%= selected_task.title %> + 10: <%= selected_task.description %> + 11: <%= selected_task.completed_at %> + 12: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb__4037805520618563232_70287430891080' + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.0ms) + + +Started GET "/" for ::1 at 2016-04-19 15:56:00 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 24ms (Views: 21.7ms | ActiveRecord: 0.4ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:56:01 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (6.6ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `title' for #): + 6: + 7: + 8: + 9: <%= @selected_task.title %> + 10: <%= @selected_task.description %> + 11: <%= @selected_task.completed_at %> + 12: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb__4037805520618563232_70287434347780' + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (52.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.0ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:56:02 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (5.3ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `title' for #): + 6: + 7: + 8: + 9: <%= @selected_task.title %> + 10: <%= @selected_task.description %> + 11: <%= @selected_task.completed_at %> + 12: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb__4037805520618563232_70287412250120' + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (14.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (58.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.5ms) + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? [["title", "The First Task"]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + + +Started GET "/" for ::1 at 2016-04-19 15:57:23 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 25ms (Views: 22.2ms | ActiveRecord: 0.5ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 15:57:25 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.7ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:57:27 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 15:57:30 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-19 15:57:31 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Second Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Second Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 25ms (Views: 22.9ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 15:57:33 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Play Video Games"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Play Video Games"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 18ms (Views: 16.5ms | ActiveRecord: 0.1ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-19 15:57:35 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "High Five Somebody You Don't Know"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 15:57:37 -0700 + +ActionController::RoutingError (No route matches [GET] "/She%20worries,%20you%20know."): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (58.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.8ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 15:57:37 -0700 + +ActionController::RoutingError (No route matches [GET] "/She%20worries,%20you%20know."): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (107.5ms) + + +Started GET "/Call%20Mom" for ::1 at 2016-04-19 15:57:40 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Call Mom"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Call Mom"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started GET "/Nap." for ::1 at 2016-04-19 15:57:42 -0700 + +ActionController::RoutingError (No route matches [GET] "/Nap."): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (58.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.5ms) + + +Started GET "/Nap." for ::1 at 2016-04-19 15:57:42 -0700 + +ActionController::RoutingError (No route matches [GET] "/Nap."): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (68.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (51.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (104.2ms) + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-19 15:57:45 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Plant Flowers"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Plant Flowers"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:58:13 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:04:23 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 19ms (Views: 18.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:04:23 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:04:29 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:04:30 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:04:36 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:04:37 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 13ms (Views: 12.1ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:04:38 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-19 16:04:51 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Second Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Second Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 16:04:53 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 28ms (Views: 26.6ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:04:55 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:09:22 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 38ms (Views: 37.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-e32af8d9671244ca054dea5b2556fb9fe5b5e162dc67910813162e9ac101f444.css?body=1" for ::1 at 2016-04-19 16:09:22 -0700 + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 16:09:23 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.5ms) +Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:10:02 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 46ms (Views: 45.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-cb291f0a5502b4ebab0ee23d5653a426a43d205948303f17b6eca9ac4bab1697.css?body=1" for ::1 at 2016-04-19 16:10:02 -0700 + + +Started GET "/images/background.jpeg" for ::1 at 2016-04-19 16:10:02 -0700 + +ActionController::RoutingError (No route matches [GET] "/images/background.jpeg"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (69.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (98.4ms) + + +Started GET "/" for ::1 at 2016-04-19 16:10:04 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 16:10:04 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/images/catface_small.png" for ::1 at 2016-04-19 16:10:05 -0700 + +ActionController::RoutingError (No route matches [GET] "/images/catface_small.png"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (64.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.5ms) + + +Started GET "/" for ::1 at 2016-04-19 16:10:34 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 36ms (Views: 35.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-f1c796d6a760302d6d991c11f97ee5227c8dcd736002355f5ba6aff80966c36a.css?body=1" for ::1 at 2016-04-19 16:10:34 -0700 + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-19 16:10:35 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Second Lunch"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Second Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 28ms (Views: 26.5ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 16:10:51 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 16:12:42 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.4ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:12:47 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 16:12:51 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 20ms (Views: 18.5ms | ActiveRecord: 0.1ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-19 16:12:56 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "High Five Somebody You Don't Know"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 16:13:03 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 26ms (Views: 22.0ms | ActiveRecord: 0.3ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 16:13:36 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.6ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/index" for ::1 at 2016-04-19 16:13:37 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"index"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "index"]] + Rendered home/single_task.html.erb within layouts/application (3.2ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `title' for nil:NilClass): + 6: + 7: + 8: + 9: <%= @selected_task.title %> + 10: <%= @selected_task.description %> + 11: <%= @selected_task.completed_at %> + 12: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb__4037805520618563232_70287387529860' + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (48.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (36.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (81.7ms) + + +Started GET "/index" for ::1 at 2016-04-19 16:13:37 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"index"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "index"]] + Rendered home/single_task.html.erb within layouts/application (3.3ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `title' for nil:NilClass): + 6: + 7: + 8: + 9: <%= @selected_task.title %> + 10: <%= @selected_task.description %> + 11: <%= @selected_task.completed_at %> + 12: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb__4037805520618563232_70287454999600' + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (53.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.8ms) + + +Started GET "/index" for ::1 at 2016-04-19 16:13:47 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"index"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "index"]] + Rendered home/single_task.html.erb within layouts/application (3.8ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `title' for nil:NilClass): + 6: + 7: + 8: + 9: <%= @selected_task.title %> + 10: <%= @selected_task.description %> + 11: <%= @selected_task.completed_at %> + 12: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb__4037805520618563232_70287429432980' + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.2ms) + + +Started GET "/index" for ::1 at 2016-04-19 16:13:47 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"index"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "index"]] + Rendered home/single_task.html.erb within layouts/application (3.5ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `title' for nil:NilClass): + 6: + 7: + 8: + 9: <%= @selected_task.title %> + 10: <%= @selected_task.description %> + 11: <%= @selected_task.completed_at %> + 12: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb__4037805520618563232_70287446415720' + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (51.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.3ms) + + +Started GET "/" for ::1 at 2016-04-19 16:13:50 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.2ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 16:13:52 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Play Video Games"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Play Video Games"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/root" for ::1 at 2016-04-19 16:13:52 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"root"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "root"]] + Rendered home/single_task.html.erb within layouts/application (3.2ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `title' for nil:NilClass): + 6: + 7: + 8: + 9: <%= @selected_task.title %> + 10: <%= @selected_task.description %> + 11: <%= @selected_task.completed_at %> + 12: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb__4037805520618563232_70287429432980' + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (45.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (9.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.5ms) + + +Started GET "/root" for ::1 at 2016-04-19 16:13:53 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"root"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "root"]] + Rendered home/single_task.html.erb within layouts/application (2.6ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `title' for nil:NilClass): + 6: + 7: + 8: + 9: <%= @selected_task.title %> + 10: <%= @selected_task.description %> + 11: <%= @selected_task.completed_at %> + 12: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb__4037805520618563232_70287446415720' + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.3ms) + + +Started GET "/" for ::1 at 2016-04-19 16:14:19 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-19 16:14:21 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Second Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Second Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.5ms) +Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.1ms) + + +Started GET "/index" for ::1 at 2016-04-19 16:14:22 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"index"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "index"]] + Rendered home/single_task.html.erb within layouts/application (2.9ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `title' for nil:NilClass): + 6: + 7: + 8: + 9: <%= @selected_task.title %> + 10: <%= @selected_task.description %> + 11: <%= @selected_task.completed_at %> + 12: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb__4037805520618563232_70287452366760' + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.6ms) + + +Started GET "/index" for ::1 at 2016-04-19 16:14:22 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"index"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "index"]] + Rendered home/single_task.html.erb within layouts/application (3.1ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `title' for nil:NilClass): + 6: + 7: + 8: + 9: <%= @selected_task.title %> + 10: <%= @selected_task.description %> + 11: <%= @selected_task.completed_at %> + 12: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb__4037805520618563232_70287412269540' + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.7ms) + + +Started GET "/index" for ::1 at 2016-04-19 16:14:51 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"index"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "index"]] + Rendered home/single_task.html.erb within layouts/application (2.6ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `title' for nil:NilClass): + 6: + 7: + 8: + 9: <%= @selected_task.title %> + 10: <%= @selected_task.description %> + 11: <%= @selected_task.completed_at %> + 12: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb__4037805520618563232_70287429268300' + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.9ms) + + +Started GET "/" for ::1 at 2016-04-19 16:14:53 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-19 16:14:55 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Second Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Second Lunch"]] + Rendered home/single_task.html.erb within layouts/application (1.0ms) +Completed 200 OK in 23ms (Views: 21.1ms | ActiveRecord: 0.1ms) + + +Started GET "/home" for ::1 at 2016-04-19 16:14:56 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"home"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "home"]] + Rendered home/single_task.html.erb within layouts/application (4.5ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `title' for nil:NilClass): + 6: + 7: + 8: + 9: <%= @selected_task.title %> + 10: <%= @selected_task.description %> + 11: <%= @selected_task.completed_at %> + 12: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb__4037805520618563232_70287447419620' + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (46.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (82.9ms) + + +Started GET "/home" for ::1 at 2016-04-19 16:14:56 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"home"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "home"]] + Rendered home/single_task.html.erb within layouts/application (2.5ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `title' for nil:NilClass): + 6: + 7: + 8: + 9: <%= @selected_task.title %> + 10: <%= @selected_task.description %> + 11: <%= @selected_task.completed_at %> + 12: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb__4037805520618563232_70287429268300' + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (48.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.7ms) + + +Started GET "/" for ::1 at 2016-04-19 16:15:13 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 14ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-19 16:15:14 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Second Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Second Lunch"]] + Rendered home/single_task.html.erb within layouts/application (1.3ms) +Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.1ms) + + +Started GET "/home/index" for ::1 at 2016-04-19 16:15:15 -0700 + +ActionController::RoutingError (No route matches [GET] "/home/index"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (55.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.0ms) + + +Started GET "/home/index" for ::1 at 2016-04-19 16:15:15 -0700 + +ActionController::RoutingError (No route matches [GET] "/home/index"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (61.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.0ms) + + +Started GET "/home/index" for ::1 at 2016-04-19 16:16:35 -0700 + +ActionController::RoutingError (No route matches [GET] "/home/index"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (56.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.9ms) + + +Started GET "/" for ::1 at 2016-04-19 16:16:38 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 16:16:39 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.4ms) +Completed 200 OK in 37ms (Views: 36.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:16:40 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-19 16:16:41 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Second Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Second Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 22ms (Views: 21.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:16:42 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.3ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 16:16:42 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Play Video Games"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Play Video Games"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 18ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:16:43 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 16:16:47 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.2ms) +Completed 200 OK in 26ms (Views: 23.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:16:47 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 28ms (Views: 27.7ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 16:18:33 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:18:35 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:19:03 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 44ms (Views: 42.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-41a8cce3b5512968a65e8cbe951058407beccecc99a10efed2328c434ffc9c7f.css?body=1" for ::1 at 2016-04-19 16:19:03 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:19:08 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:19:17 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 45ms (Views: 44.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-a6b0100ecd39027d926abf584157b4b47c6bbc3ed556f08cf2d53f7bf40dc5f3.css?body=1" for ::1 at 2016-04-19 16:19:17 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:19:27 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 35ms (Views: 34.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-bd8768cf65c66d591611ecc9f9cade7d65d9482c06dabddacf39892a5a3a9575.css?body=1" for ::1 at 2016-04-19 16:19:27 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:19:33 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-f1c796d6a760302d6d991c11f97ee5227c8dcd736002355f5ba6aff80966c36a.css?body=1" for ::1 at 2016-04-19 16:19:33 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:19:33 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:19:33 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:19:33 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:19:33 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:19:33 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:19:33 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:19:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:19:33 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:19:45 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 37ms (Views: 36.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-d8ea375987e676d8c15b5793a926e9bbda7be122c06a62bf71a89f0e18ecb048.css?body=1" for ::1 at 2016-04-19 16:19:45 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:19:45 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:19:45 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:19:45 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:19:45 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:19:45 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:19:45 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:19:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:19:45 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:19:51 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 46ms (Views: 45.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-0dcddbb300e27604d861b05545fad836eb05462012a8f3162a7e5d8a09df8109.css?body=1" for ::1 at 2016-04-19 16:19:51 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:19:51 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:19:51 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:19:51 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:19:51 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:19:51 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:19:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:19:51 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:19:51 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:19:52 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-0dcddbb300e27604d861b05545fad836eb05462012a8f3162a7e5d8a09df8109.css?body=1" for ::1 at 2016-04-19 16:19:52 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:19:52 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:19:53 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:19:53 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:19:53 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:19:53 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:19:53 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:19:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:19:53 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:19:53 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.2ms) +Completed 200 OK in 31ms (Views: 29.1ms | ActiveRecord: 0.3ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:19:53 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.5ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-0dcddbb300e27604d861b05545fad836eb05462012a8f3162a7e5d8a09df8109.css?body=1" for ::1 at 2016-04-19 16:19:53 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:19:53 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:19:53 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:19:53 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:19:53 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:19:53 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:19:53 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:19:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:19:53 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:19:55 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 16:20:31 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 33ms (Views: 32.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-22f632425cdd0e170babec3ae9af0030687c1f6537ae1fb75e6f3fee8726b4fc.css?body=1" for ::1 at 2016-04-19 16:20:31 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:20:31 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:20:31 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:20:31 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:20:31 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:20:31 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:20:31 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:20:31 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:20:31 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:21:20 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 38ms (Views: 37.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-fb1f82b3a82366c99a5cc8db08f03062eb499f637241714cb1515f76150706a6.css?body=1" for ::1 at 2016-04-19 16:21:20 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:21:20 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:21:20 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:21:20 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:21:20 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:21:20 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:21:20 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:21:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:21:20 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:21:25 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-22f632425cdd0e170babec3ae9af0030687c1f6537ae1fb75e6f3fee8726b4fc.css?body=1" for ::1 at 2016-04-19 16:21:25 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:21:25 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:21:25 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:21:25 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:21:25 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:21:25 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:21:25 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:21:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:21:25 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:21:35 -0700 +Processing by HomeController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 36ms (Views: 34.7ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/home.self-51817a506ccbcc2d308185545f91740f719da9646c8b409d22bbf0733ac0e5c6.css?body=1" for ::1 at 2016-04-19 16:21:35 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:21:35 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:21:35 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:21:35 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:21:35 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:21:35 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:21:35 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:21:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:21:35 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:21:43 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-22f632425cdd0e170babec3ae9af0030687c1f6537ae1fb75e6f3fee8726b4fc.css?body=1" for ::1 at 2016-04-19 16:21:43 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:21:43 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:21:43 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:21:43 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:21:43 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:21:43 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:21:43 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:21:43 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:21:43 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:21:52 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 40ms (Views: 39.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-7be57566d4351b388dfe06702b980bd5208f645e2624388f3e33e15b5300abec.css?body=1" for ::1 at 2016-04-19 16:21:52 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:21:52 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:21:52 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:21:52 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:21:52 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:21:52 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:21:52 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:21:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:21:52 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:22:08 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 45ms (Views: 43.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-e393a652773c3a89295bcd489e2bb9de66ef964f6868ada09e1133ebd7d3e372.css?body=1" for ::1 at 2016-04-19 16:22:08 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:22:08 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:22:08 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:22:08 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:22:08 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:22:08 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:22:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:22:08 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:22:08 -0700 + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-19 16:22:10 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Second Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Second Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-19 16:22:10 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Second Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Second Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-e393a652773c3a89295bcd489e2bb9de66ef964f6868ada09e1133ebd7d3e372.css?body=1" for ::1 at 2016-04-19 16:22:10 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:22:10 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:22:10 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:22:10 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:22:10 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:22:10 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:22:10 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:22:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:22:10 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:22:11 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-19 16:22:12 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Second Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Second Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:22:28 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 34ms (Views: 33.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-594ace59b2a4edde3e6cae25963a1d819689e9fb0df8b4ebe1777829cd0c0aa7.css?body=1" for ::1 at 2016-04-19 16:22:28 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:22:48 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 34ms (Views: 33.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-66e73be7783db1418c2a079098e450a80e972c976b705cf3019fbd0b748f31ab.css?body=1" for ::1 at 2016-04-19 16:22:48 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:23:09 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 37ms (Views: 36.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-baf6ecd3292e309eed5376d71cea71ca253be7e984886fd34f0500273c2f03a6.css?body=1" for ::1 at 2016-04-19 16:23:09 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:23:09 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:23:09 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:23:09 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:23:09 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:23:09 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:23:09 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:23:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:23:09 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:23:14 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 43ms (Views: 42.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-4a07464064cd4559f65ef935487b073a76183d6d1e414d7431f7e1c59e734f13.css?body=1" for ::1 at 2016-04-19 16:23:14 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:23:14 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:23:14 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:23:14 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:23:14 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:23:14 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:23:14 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:23:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:23:14 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:23:19 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 41ms (Views: 40.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-2cba5a55a6822110ecb6a0195f26b1b846300c8d3848c8333bb479265cb6bd52.css?body=1" for ::1 at 2016-04-19 16:23:19 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:23:19 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:23:19 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:23:19 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:23:19 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:23:19 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:23:19 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:23:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:23:19 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:23:24 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 39ms (Views: 37.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-6b4c084ee4b1907846f0e65aa3e3abc43cf38fe5e367c98222e95c37350326a2.css?body=1" for ::1 at 2016-04-19 16:23:24 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:23:24 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:23:24 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:23:24 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:23:24 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:23:24 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:23:24 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:23:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:23:24 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:23:29 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-2cba5a55a6822110ecb6a0195f26b1b846300c8d3848c8333bb479265cb6bd52.css?body=1" for ::1 at 2016-04-19 16:23:29 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:23:29 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:23:29 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:23:29 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:23:29 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:23:29 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:23:29 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:23:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:23:29 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:23:37 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 38ms (Views: 37.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-68aed616ccab6faf2f7a5d4908fcecc6728eb3f8ff479ab95e82cbca2cfcfde2.css?body=1" for ::1 at 2016-04-19 16:23:37 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:23:37 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:23:37 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:23:37 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:23:37 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:23:37 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:23:37 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:23:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:23:37 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:23:45 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 36ms (Views: 34.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-30ecef740a9c55a4454e2e8ceb127336d8d26494b67f91b44998fba6632973af.css?body=1" for ::1 at 2016-04-19 16:23:45 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:23:45 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:23:45 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:23:45 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:23:45 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:23:45 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:23:45 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:23:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:23:45 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:23:48 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 36ms (Views: 35.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-0becb0c8ffc06035c524ed7672d528663b2e13941536946a622702cdef4c4988.css?body=1" for ::1 at 2016-04-19 16:23:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:23:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:23:48 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:23:48 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:23:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:23:48 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:23:48 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:23:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:23:48 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:24:00 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:24:10 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 36ms (Views: 34.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-aeb251a3f26fd63fb2043490387cc1da19c641464336a07cfd08bff40b6d758a.css?body=1" for ::1 at 2016-04-19 16:24:10 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:24:10 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:24:10 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:24:10 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:24:10 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:24:10 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:24:10 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:24:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:24:10 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:24:17 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 37ms (Views: 36.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-f58bdc045271fd4762253ec767ebd28364a9a1dc653a2e84014abc0714073d81.css?body=1" for ::1 at 2016-04-19 16:24:17 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:24:17 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:24:17 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:24:17 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:24:17 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:24:17 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:24:17 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:24:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:24:17 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:24:19 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:24:26 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 37ms (Views: 36.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-00672ae3ffaa67d28df255606971648ac1a87494320f0ccac0662e7722e40d7c.css?body=1" for ::1 at 2016-04-19 16:24:26 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:24:26 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:24:26 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:24:26 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:24:26 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:24:26 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:24:26 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:24:26 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:24:26 -0700 + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-19 16:24:28 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "High Five Somebody You Don't Know"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-19 16:24:38 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "High Five Somebody You Don't Know"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-f58bdc045271fd4762253ec767ebd28364a9a1dc653a2e84014abc0714073d81.css?body=1" for ::1 at 2016-04-19 16:24:38 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:24:38 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:24:38 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:24:38 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:24:38 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:24:38 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:24:38 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:24:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:24:38 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:24:40 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 16:27:07 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-f58bdc045271fd4762253ec767ebd28364a9a1dc653a2e84014abc0714073d81.css?body=1" for ::1 at 2016-04-19 16:27:07 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:27:07 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:27:07 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:27:07 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:27:07 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:27:07 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:27:07 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:27:07 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:27:07 -0700 + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 16:27:48 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 16:28:29 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 35ms (Views: 34.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-58ec0b35fae63e6cb9583faaec3f7b86bfeb8ab6471c0b7c5028215eda963560.css?body=1" for ::1 at 2016-04-19 16:28:29 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:28:29 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:28:29 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:28:29 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:28:29 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:28:29 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:28:29 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:28:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:28:29 -0700 + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 16:28:34 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.3ms) +Completed 200 OK in 56ms (Views: 54.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-460c2bad39e0d6483392334530d50135f51bc30bf7265fe79eba0558d8dc0fc9.css?body=1" for ::1 at 2016-04-19 16:28:34 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:28:34 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:28:34 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:28:34 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:28:34 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:28:34 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:28:34 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:28:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:28:34 -0700 + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 16:28:40 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 46ms (Views: 44.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-9fa220c5ac382696e4ccf4a8ea8b8d5687a7fe4363078553f0889708f81ef5d1.css?body=1" for ::1 at 2016-04-19 16:28:40 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:28:40 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:28:40 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:28:40 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:28:40 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:28:40 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:28:40 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:28:40 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:28:40 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:28:43 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:29:01 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 35ms (Views: 34.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-0e2b052e5c81a6ede5fbafbe5273c2f0ef37e1949a3d5b050d620a813d54c117.css?body=1" for ::1 at 2016-04-19 16:29:01 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:29:01 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:29:01 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:29:01 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:29:01 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:29:01 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:29:01 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:29:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:29:01 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:29:02 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-0e2b052e5c81a6ede5fbafbe5273c2f0ef37e1949a3d5b050d620a813d54c117.css?body=1" for ::1 at 2016-04-19 16:29:02 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:29:02 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:29:02 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:29:02 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:29:02 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:29:02 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:29:02 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:29:02 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:29:02 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:29:05 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-0e2b052e5c81a6ede5fbafbe5273c2f0ef37e1949a3d5b050d620a813d54c117.css?body=1" for ::1 at 2016-04-19 16:29:05 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:29:05 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:29:05 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:29:05 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:29:05 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:29:05 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:29:05 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:29:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:29:05 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:29:06 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-0e2b052e5c81a6ede5fbafbe5273c2f0ef37e1949a3d5b050d620a813d54c117.css?body=1" for ::1 at 2016-04-19 16:29:06 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:29:06 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:29:06 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:29:06 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:29:06 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:29:06 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:29:06 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:29:06 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:29:06 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:29:10 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 42ms (Views: 40.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-369d51c66283815f50055fa1f0bb3eb56d411a60827d7c04a1dfd88d0e532620.css?body=1" for ::1 at 2016-04-19 16:29:10 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:29:10 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:29:10 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:29:10 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:29:10 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:29:10 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:29:10 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:29:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:29:10 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:29:11 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:29:18 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-19 16:29:41 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-369d51c66283815f50055fa1f0bb3eb56d411a60827d7c04a1dfd88d0e532620.css?body=1" for ::1 at 2016-04-19 16:29:41 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:29:41 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:29:41 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:29:41 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:29:41 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:29:41 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:29:41 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:29:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:29:41 -0700 + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-19 16:30:06 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Plant Flowers"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Plant Flowers"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:30:08 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:30:09 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:30:10 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 16:30:11 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:30:12 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-19 16:30:14 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Second Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Second Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-19 16:30:23 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Second Lunch"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Second Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.8ms) +Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-369d51c66283815f50055fa1f0bb3eb56d411a60827d7c04a1dfd88d0e532620.css?body=1" for ::1 at 2016-04-19 16:30:23 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:30:23 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:30:23 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:30:23 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:30:23 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:30:23 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:30:23 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:30:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:30:23 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:30:23 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 16:30:29 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-369d51c66283815f50055fa1f0bb3eb56d411a60827d7c04a1dfd88d0e532620.css?body=1" for ::1 at 2016-04-19 16:30:29 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:30:29 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:30:29 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:30:29 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:30:29 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:30:29 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:30:29 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:30:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:30:29 -0700 + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 16:30:33 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.6ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:30:34 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:30:35 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:30:36 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:33:06 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-19 16:33:42 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Plant Flowers"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Plant Flowers"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 16:33:45 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.2ms) +Completed 200 OK in 19ms (Views: 17.1ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 16:37:08 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:37:10 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:42:15 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:42:17 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 16:42:18 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:42:19 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-19 16:42:21 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Second Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Second Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:42:22 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 16:42:22 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:42:23 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 25ms (Views: 23.9ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 16:42:24 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:42:25 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.2ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 16:42:26 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Play Video Games"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Play Video Games"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:42:27 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 24ms (Views: 23.0ms | ActiveRecord: 0.2ms) + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-19 16:42:29 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Plant Flowers"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Plant Flowers"]] + Rendered home/single_task.html.erb within layouts/application (0.3ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:42:30 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 16:42:30 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:42:31 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:44:20 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:44:36 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.5ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-369d51c66283815f50055fa1f0bb3eb56d411a60827d7c04a1dfd88d0e532620.css?body=1" for ::1 at 2016-04-19 16:44:36 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:44:36 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:44:36 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:44:36 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:44:36 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:44:36 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:44:36 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:44:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:44:36 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:44:37 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:44:42 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.5ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:44:44 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 16:44:45 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:44:46 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 16:44:46 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:44:47 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-19 16:44:48 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Second Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Second Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.2ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:44:50 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-19 16:44:51 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "High Five Somebody You Don't Know"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:44:53 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/Call%20Mom" for ::1 at 2016-04-19 16:44:54 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Call Mom"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Call Mom"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:44:55 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:47:09 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:47:10 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 16:47:11 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:47:14 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:47:15 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:47:27 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (Invalid CSS after " background-color": expected "{", was "; gray;"): + 2: + 3: + 4: Task List + 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> + 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> + 7: <%= csrf_meta_tags %> + 8: + app/assets/stylesheets/home.scss:18 + app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__660843835529710309_70287411800580' + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (52.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (48.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (104.9ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:47:34 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 42ms (Views: 41.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-7c492d1e214d569c54655503e9021e21e04396e5cf93d305c07f1adee4fa9e9a.css?body=1" for ::1 at 2016-04-19 16:47:34 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:47:34 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:47:34 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:47:34 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:47:34 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:47:34 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:47:34 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:47:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:47:34 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:48:18 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 37ms (Views: 35.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-a1f6450de7d74feac6cca4d84be61097784ad5f0cb2ceaf9b4e03a35d3c4b4ed.css?body=1" for ::1 at 2016-04-19 16:48:18 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:48:18 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:48:18 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:48:18 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:48:18 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:48:18 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:48:18 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:48:18 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:48:18 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:48:33 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 44ms (Views: 42.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-8cfb4a618ab135d78274f2b39436deabb2067cf5cd72dd24e6d4bf53426f9d49.css?body=1" for ::1 at 2016-04-19 16:48:33 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:48:33 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:48:33 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:48:33 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:48:33 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:48:33 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:48:33 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:48:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:48:33 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:48:47 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 45ms (Views: 43.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-73b90e399934e3cbf4bcd73a1bbac579758405d3f43abbbea8aba683d0e6bac5.css?body=1" for ::1 at 2016-04-19 16:48:47 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:48:47 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:48:47 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:48:47 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:48:47 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:48:47 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:48:47 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:48:47 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:48:47 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:48:56 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-369d51c66283815f50055fa1f0bb3eb56d411a60827d7c04a1dfd88d0e532620.css?body=1" for ::1 at 2016-04-19 16:48:56 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:48:56 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:48:56 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:48:56 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:48:56 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:48:56 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:48:56 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:48:56 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:48:56 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:51:01 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:54:09 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 98ms (Views: 97.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-eec0e393e387a2d8786d920ae5c667453f76e612fa99b680db15c3ac3e4c62b0.css?body=1" for ::1 at 2016-04-19 16:54:09 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:54:09 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:54:09 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:54:09 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:54:09 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:54:09 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:54:09 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:54:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:54:09 -0700 + + +Started GET "/clouds.jpg" for ::1 at 2016-04-19 16:54:09 -0700 +Processing by HomeController#single_task as JPEG + Parameters: {"title"=>"clouds"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "clouds"]] +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.2ms) + +ActionView::MissingTemplate (Missing template home/single_task, application/single_task with {:locale=>[:en], :formats=>[:jpeg], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/annamason/C5/projects/TaskListRails/task-list/app/views" +): + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (51.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (52.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (110.0ms) + + +Started GET "/" for ::1 at 2016-04-19 16:54:10 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:54:11 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:54:27 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 44ms (Views: 43.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:54:27 -0700 + + +Started GET "/assets/home.self-18fc736410b1782d13d0c64ad3e3e7d030462f63f5e7a4827a31250c87e55caa.css?body=1" for ::1 at 2016-04-19 16:54:27 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:54:27 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:54:27 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:54:27 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:54:27 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:54:27 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:54:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:54:27 -0700 + + +Started GET "/images/clouds.jpg" for ::1 at 2016-04-19 16:54:27 -0700 + +ActionController::RoutingError (No route matches [GET] "/images/clouds.jpg"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (80.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (109.3ms) + + +Started GET "/" for ::1 at 2016-04-19 16:54:29 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:54:29 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 16:54:30 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-18fc736410b1782d13d0c64ad3e3e7d030462f63f5e7a4827a31250c87e55caa.css?body=1" for ::1 at 2016-04-19 16:54:30 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:54:30 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:54:30 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:54:30 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:54:30 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:54:30 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:54:30 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:54:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:54:30 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:54:38 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 63ms (Views: 62.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-c9abc9363c20a6026830a4957e301491d443df94824e4409d9f35af286f9e632.css?body=1" for ::1 at 2016-04-19 16:54:38 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:54:38 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:54:38 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:54:38 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:54:38 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:54:38 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:54:38 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:54:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:54:38 -0700 + + +Started GET "/assets/images/clouds.jpg" for ::1 at 2016-04-19 16:54:38 -0700 + +ActionController::RoutingError (No route matches [GET] "/assets/images/clouds.jpg"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (73.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (50.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (108.8ms) + + +Started GET "/" for ::1 at 2016-04-19 16:54:39 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 16:54:48 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 46ms (Views: 45.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-14dd7c80ba9a6b5e6abf4cf7bbda9a1b9a3653d6d5bbf29e5af2f7984eea6977.css?body=1" for ::1 at 2016-04-19 16:54:48 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:54:48 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:54:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:54:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:54:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:54:48 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:54:48 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:54:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:54:48 -0700 + + +Started GET "/assets/app/assets/images/clouds.jpg" for ::1 at 2016-04-19 16:54:48 -0700 + +ActionController::RoutingError (No route matches [GET] "/assets/app/assets/images/clouds.jpg"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (72.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (109.2ms) + + +Started GET "/" for ::1 at 2016-04-19 16:54:49 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:54:53 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 71ms (Views: 69.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-cc4d12a3d34350724230759aad858892a6414ffc7d1ee18364fe8ecfb2f02a99.css?body=1" for ::1 at 2016-04-19 16:54:53 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:54:53 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:54:53 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:54:53 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:54:53 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:54:53 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:54:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:54:53 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:54:53 -0700 + + +Started GET "/app/assets/images/clouds.jpg" for ::1 at 2016-04-19 16:54:53 -0700 + +ActionController::RoutingError (No route matches [GET] "/app/assets/images/clouds.jpg"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (71.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (109.3ms) + + +Started GET "/" for ::1 at 2016-04-19 16:54:54 -0700 +Processing by HomeController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-19 16:55:00 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 43ms (Views: 42.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-65247868e22831e1f53657b855268a6e0575e0445012154352f02ce6fcc15f26.css?body=1" for ::1 at 2016-04-19 16:55:00 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:55:00 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:55:00 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:55:00 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:55:00 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:55:00 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:55:00 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:55:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:55:00 -0700 + + +Started GET "/assets/clouds.jpg" for ::1 at 2016-04-19 16:55:01 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:55:09 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 44ms (Views: 43.2ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:55:09 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.2ms) +Completed 200 OK in 33ms (Views: 31.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:55:09 -0700 + + +Started GET "/assets/home.self-4d663281c40c786c9ebede7a1189ce1666f1ce874021308933a12301d6aa9cd0.css?body=1" for ::1 at 2016-04-19 16:55:09 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:55:09 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:55:09 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:55:09 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:55:09 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:55:09 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:55:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:55:09 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 16:55:09 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 16:55:09 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:55:31 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 80ms (Views: 78.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:55:32 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-19 16:55:33 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Second Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Second Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 22:55:07 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (6.9ms) +Completed 200 OK in 274ms (Views: 264.2ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/home.self-4d663281c40c786c9ebede7a1189ce1666f1ce874021308933a12301d6aa9cd0.css?body=1" for ::1 at 2016-04-19 22:55:08 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 22:55:08 -0700 + + +Started GET "/" for ::1 at 2016-04-19 22:57:08 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 58ms (Views: 56.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-ddd1c7617d0c047f4c358c8929839508426ce6bc364d6e4f3e9a13272998ddf2.css?body=1" for ::1 at 2016-04-19 22:57:09 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 22:57:09 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 22:57:09 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 22:57:09 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 22:57:09 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 22:57:09 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 22:57:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 22:57:09 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 22:57:09 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 22:57:09 -0700 + + +Started GET "/" for ::1 at 2016-04-19 22:57:22 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 58ms (Views: 56.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-0f0a9a03e9e633a7f3fe981aa572e98568cedefcd5e67be88d844ec06b3cd466.css?body=1" for ::1 at 2016-04-19 22:57:22 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 22:57:22 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 22:57:22 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 22:57:22 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 22:57:22 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 22:57:22 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 22:57:22 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 22:57:22 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 22:57:22 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 22:57:22 -0700 + + +Started GET "/" for ::1 at 2016-04-19 22:57:27 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 38ms (Views: 37.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 22:57:27 -0700 + + +Started GET "/assets/home.self-1d475c27e2ba97553f28662ed54b677b9d28d0fd2acb296c902da4148d7a5bb3.css?body=1" for ::1 at 2016-04-19 22:57:27 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 22:57:27 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 22:57:27 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 22:57:27 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 22:57:27 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 22:57:27 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 22:57:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 22:57:27 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 22:57:27 -0700 + + +Started GET "/" for ::1 at 2016-04-19 22:57:35 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 50ms (Views: 49.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-417fd0bfa058a539c6d84d1b2774491ff27affffd8a0d7d0dc77ee8b793c53e3.css?body=1" for ::1 at 2016-04-19 22:57:35 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 22:57:35 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 22:57:35 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 22:57:35 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 22:57:35 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 22:57:36 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 22:57:36 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 22:57:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 22:57:36 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 22:57:36 -0700 + + +Started GET "/" for ::1 at 2016-04-19 22:57:55 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 47ms (Views: 45.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-6a826b2e9110dacf0fafc1dd3bd263f8be0f5dfba1db2cfb9fea5614003471ac.css?body=1" for ::1 at 2016-04-19 22:57:55 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 22:57:55 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 22:57:55 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 22:57:55 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 22:57:55 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 22:57:55 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 22:57:55 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 22:57:55 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 22:57:55 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 22:57:55 -0700 + + +Started GET "/" for ::1 at 2016-04-19 22:58:39 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 56ms (Views: 55.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-451906c13e2bfc2083983dce3f40517a63830d4c37f7594ba5d77ec770a8ce80.css?body=1" for ::1 at 2016-04-19 22:58:39 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 22:58:39 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 22:58:39 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 22:58:39 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 22:58:39 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 22:58:39 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 22:58:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 22:58:39 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 22:58:39 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 22:58:39 -0700 + + +Started GET "/" for ::1 at 2016-04-19 22:59:06 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 61ms (Views: 60.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-0fd9a0683c7d6c1b376195fa428e3c342aaf70ac5505e2e7b3d0c6657f6520ff.css?body=1" for ::1 at 2016-04-19 22:59:06 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 22:59:06 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 22:59:06 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 22:59:06 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 22:59:06 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 22:59:06 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 22:59:06 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 22:59:06 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 22:59:06 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 22:59:06 -0700 + + +Started GET "/" for ::1 at 2016-04-19 22:59:22 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 44ms (Views: 43.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-852a7693acf28a5288224f18a4d967f83d07a608d272366e68e6d2403a3603e1.css?body=1" for ::1 at 2016-04-19 22:59:22 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 22:59:22 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 22:59:22 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 22:59:22 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 22:59:22 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 22:59:22 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 22:59:22 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 22:59:22 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 22:59:22 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 22:59:22 -0700 + + +Started GET "/" for ::1 at 2016-04-19 22:59:28 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 50ms (Views: 49.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-1624b9cce8891aabbedd1ae368d2ae138913482b62e9dbbc9ec89b0017a6ba2e.css?body=1" for ::1 at 2016-04-19 22:59:28 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 22:59:28 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 22:59:28 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 22:59:28 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 22:59:28 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 22:59:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 22:59:28 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 22:59:28 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 22:59:28 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 22:59:28 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:02:01 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 36ms (Views: 35.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-7a357aed4bb9a94a33e4c3652effec4018e9c21dc1303eecfe3f9945f503c2f4.css?body=1" for ::1 at 2016-04-19 23:02:01 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:02:01 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:02:01 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:02:01 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:02:01 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:02:01 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:02:01 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:02:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:02:01 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:02:01 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:02:20 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 60ms (Views: 59.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-c34434fa6124db2bdbd4fd7fd7e131462cb4b6ac282337eef97ab5a6d1e51641.css?body=1" for ::1 at 2016-04-19 23:02:20 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:02:20 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:02:20 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:02:20 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:02:20 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:02:20 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:02:20 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:02:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:02:20 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:02:20 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:02:41 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 49ms (Views: 48.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-624f1b0089e8379fa56273a552b46ad2055dc726f6c78c095991753de614fc2e.css?body=1" for ::1 at 2016-04-19 23:02:41 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:02:41 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:02:41 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:02:41 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:02:41 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:02:41 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:02:41 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:02:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:02:41 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:02:41 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:03:01 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 51ms (Views: 50.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-460fc39deefa2886155baeb5cbc396ff1a36bfa789cbf0a89f5c973290ea541f.css?body=1" for ::1 at 2016-04-19 23:03:01 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:03:01 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:03:01 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:03:01 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:03:01 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:03:01 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:03:01 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:03:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:03:01 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:03:01 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:03:10 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 58ms (Views: 57.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-7ee9c3562310863e6755eb017036c2e082dd79a9069804395ac961c22ee06d25.css?body=1" for ::1 at 2016-04-19 23:03:10 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:03:10 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:03:10 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:03:10 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:03:10 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:03:10 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:03:10 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:03:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:03:10 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:03:10 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:03:15 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 49ms (Views: 48.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-05c487e7688d71b83a7dc9245f1fbc3b445de48bb57eece97d36e435b494db9d.css?body=1" for ::1 at 2016-04-19 23:03:15 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:03:15 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:03:15 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:03:15 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:03:15 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:03:15 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:03:15 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:03:15 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:03:15 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:03:15 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:03:19 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 55ms (Views: 53.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-3eccf646291b97c927958ee8b23cc374fb6bedc3f474fc0347c36701ced6b841.css?body=1" for ::1 at 2016-04-19 23:03:19 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:03:19 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:03:19 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:03:19 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:03:19 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:03:19 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:03:19 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:03:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:03:19 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:03:19 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:03:29 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 59ms (Views: 57.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/home.self-d33ac9a73215483e28a669da14a2bf3f367e2c5424be2ad7562a3450770bd4a0.css?body=1" for ::1 at 2016-04-19 23:03:29 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:03:29 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:03:29 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:03:29 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:03:29 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:03:29 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:03:29 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:03:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:03:29 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:03:29 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:03:45 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 48ms (Views: 47.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-a1a3b90016d898c5ce4d91548fade6cb8e8ab835fd28495c68f00b1c2bab2fe4.css?body=1" for ::1 at 2016-04-19 23:03:45 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:03:45 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:03:45 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:03:45 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:03:45 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:03:45 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:03:45 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:03:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:03:45 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:03:45 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:03:52 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 35ms (Views: 34.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-81b1d854bcc8e851276f2e7ac2345aa8e03fcc7ec78a105ab5d06029b433d89c.css?body=1" for ::1 at 2016-04-19 23:03:52 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:03:52 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:03:52 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:03:52 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:03:52 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:03:52 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:03:52 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:03:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:03:52 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:03:52 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:04:00 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 39ms (Views: 38.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-6244ee8daaf69abe6fcded125613a6e9dac2f9d7d76fcf60b7afb34525239ada.css?body=1" for ::1 at 2016-04-19 23:04:00 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:04:00 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:04:00 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:04:00 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:04:00 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:04:00 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:04:00 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:04:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:04:00 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:04:00 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:04:53 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 53ms (Views: 52.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-439aa3fa3b51a5111feda8134fb68d7cff4e1ee28839da72f2c9565bf7519eac.css?body=1" for ::1 at 2016-04-19 23:04:53 -0700 + + +Started GET "/assets/home.self-439aa3fa3b51a5111feda8134fb68d7cff4e1ee28839da72f2c9565bf7519eac.css?body=1" for ::1 at 2016-04-19 23:04:53 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:04:53 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:04:53 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:04:53 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:04:53 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:04:53 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:04:53 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:04:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:04:54 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:04:54 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:04:54 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 21ms (Views: 20.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-439aa3fa3b51a5111feda8134fb68d7cff4e1ee28839da72f2c9565bf7519eac.css?body=1" for ::1 at 2016-04-19 23:04:54 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:04:54 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:04:54 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:04:54 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:04:54 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:04:55 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:04:55 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:04:55 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:04:55 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:05:05 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 48ms (Views: 47.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-8579b16e20daeff740c0f245a0ead86fe2eb66a4bb304f32f432effa54d2f788.css?body=1" for ::1 at 2016-04-19 23:05:05 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:05:05 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:05:05 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:05:05 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:05:05 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:05:05 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:05:05 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:05:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:05:05 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:05:05 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:05:08 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-8579b16e20daeff740c0f245a0ead86fe2eb66a4bb304f32f432effa54d2f788.css?body=1" for ::1 at 2016-04-19 23:05:08 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:05:08 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:05:08 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:05:08 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:05:08 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:05:08 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:05:08 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:05:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:05:08 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:05:13 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 53ms (Views: 51.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-3a10b7e836136b85393db2e2902345661d99a2aa72229a5301f6679e1b113dcf.css?body=1" for ::1 at 2016-04-19 23:05:13 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:05:13 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:05:13 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:05:14 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:05:14 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:05:14 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:05:14 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:05:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:05:14 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:05:14 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:05:29 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 45ms (Views: 44.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-8101819bb15e986f1ae97935cd20984a4b8ae36d28889a8cd3f5a45184d53f33.css?body=1" for ::1 at 2016-04-19 23:05:29 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:05:29 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:05:29 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:05:29 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:05:29 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:05:29 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:05:29 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:05:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:05:29 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:05:29 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:05:36 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 45ms (Views: 44.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-f9e99363401745ae922c645123645da6101fbd617595984ff3d26ef96f87d98e.css?body=1" for ::1 at 2016-04-19 23:05:36 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:05:36 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:05:36 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:05:36 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:05:36 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:05:36 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:05:36 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:05:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:05:36 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:05:36 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:06:16 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 48ms (Views: 46.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-9db5f253973112a1c9f2fa0cd8904eb716d617acd78679572080f2743abdb592.css?body=1" for ::1 at 2016-04-19 23:06:16 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:06:16 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:06:16 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:06:16 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:06:16 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:06:16 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:06:16 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:06:16 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:06:16 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:06:16 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:06:17 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-9db5f253973112a1c9f2fa0cd8904eb716d617acd78679572080f2743abdb592.css?body=1" for ::1 at 2016-04-19 23:06:17 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:06:17 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:06:17 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:06:17 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:06:17 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:06:17 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:06:17 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:06:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:06:17 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:06:24 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-3a10b7e836136b85393db2e2902345661d99a2aa72229a5301f6679e1b113dcf.css?body=1" for ::1 at 2016-04-19 23:06:24 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:06:24 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:06:24 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:06:24 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:06:24 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:06:24 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:06:24 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:06:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:06:24 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:06:57 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 42ms (Views: 41.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-5f04e4a896d4ed6b58c0a32f8f9b80bd09bd7f99f5a500ffcdad4ea76e5bd19f.css?body=1" for ::1 at 2016-04-19 23:06:57 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:06:57 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:06:57 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:06:57 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:06:57 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:06:57 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:06:57 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:06:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:06:57 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:06:57 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:06:58 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 23:06:59 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 23:07:36 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 41ms (Views: 40.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-7421aebdc173ab022f3d26878f0a2d32b56cecb744feee422308d8c930fe5d64.css?body=1" for ::1 at 2016-04-19 23:07:36 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:07:36 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:08:17 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 36ms (Views: 35.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-c50c9d09513a1f48558ec2e63e135523772c85228978afdd1edc4f2baa769c6a.css?body=1" for ::1 at 2016-04-19 23:08:17 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:08:17 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:08:25 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 41ms (Views: 40.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-bb5f0da0265bf8490bd6e43ed6366c1daf3e5b02e1c34006fe14ba7b7c85b92f.css?body=1" for ::1 at 2016-04-19 23:08:25 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:08:25 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:08:25 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:08:25 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:08:25 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:08:25 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:08:25 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:08:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:08:25 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:08:25 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:08:30 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 45ms (Views: 44.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-8be31a388cc589125556cceba92314086f14c58f293a65894de410381b741240.css?body=1" for ::1 at 2016-04-19 23:08:30 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:08:30 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:08:30 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:08:30 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:08:30 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:08:30 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:08:30 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:08:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:08:30 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:08:30 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:08:43 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 51ms (Views: 50.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-122f14968b27e1ba8fdb3909a1bd2533a8acf56ca2578edf5f930c93e05f37ed.css?body=1" for ::1 at 2016-04-19 23:08:43 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:08:43 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:08:43 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:08:43 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:08:43 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:08:43 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:08:43 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:08:43 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:08:43 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:08:43 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:08:54 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 38ms (Views: 37.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-27587de29a2dcc613722f12b7d5c72acf726eecf68e237e1a6001a5ac48ba247.css?body=1" for ::1 at 2016-04-19 23:08:54 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:08:54 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:08:54 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:08:54 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:08:54 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:08:54 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:08:54 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:08:54 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:08:54 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:08:54 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:08:55 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-27587de29a2dcc613722f12b7d5c72acf726eecf68e237e1a6001a5ac48ba247.css?body=1" for ::1 at 2016-04-19 23:08:55 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:08:55 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:08:55 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:08:55 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:08:55 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:08:55 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:08:55 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:08:55 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:08:55 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:10:32 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 40ms (Views: 39.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-2d87ef726e64f57146e549fd29ee62021f5fb481595f1eaefa8639b9834db216.css?body=1" for ::1 at 2016-04-19 23:10:32 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:10:32 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:10:32 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:10:32 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:10:32 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:10:32 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:10:32 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:10:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:10:32 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:10:32 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:10:49 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 55ms (Views: 54.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-d4e33a3dc64c3b0b0e2a9cd6ff6bc6dbf73b0fbd1fd855bb11f9f7e02cd1e6da.css?body=1" for ::1 at 2016-04-19 23:10:49 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:10:49 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:10:49 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:10:49 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:10:49 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:10:49 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:10:49 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:10:49 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:10:49 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:10:49 -0700 + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 23:11:03 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.5ms) +Completed 200 OK in 26ms (Views: 16.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 23:11:06 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 23:11:07 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 23:11:09 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 23:11:21 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 49ms (Views: 48.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-ab9e60f87c09d4833cf72ba17a10986c32d26dc3fb682f0e293790c7ee23b126.css?body=1" for ::1 at 2016-04-19 23:11:21 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:11:21 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:11:21 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:11:21 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:11:21 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:11:21 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:11:21 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:11:21 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:11:21 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:11:21 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:11:50 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 45ms (Views: 44.6ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/home.self-f124cd47a314d119f0992d8ac7f487dbf1b4cdc103166041651a5899eee471c3.css?body=1" for ::1 at 2016-04-19 23:11:50 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:11:50 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:11:50 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:11:50 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:11:50 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:11:50 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:11:50 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:11:50 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:11:50 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:11:50 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:12:23 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 48ms (Views: 47.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-a50de769dd4c28fbe4845b03675b1598eaa83f08bed4a581ad4897f1c4ca912b.css?body=1" for ::1 at 2016-04-19 23:12:23 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:12:23 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:12:23 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:12:23 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:12:23 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:12:23 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:12:23 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:12:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:12:23 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:12:23 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:12:30 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 50ms (Views: 49.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-55b0c6d5432d1d01642b22accb99c544fdcf0a9bda887b48aaff32a953b3edb8.css?body=1" for ::1 at 2016-04-19 23:12:30 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:12:30 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:12:30 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:12:30 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:12:30 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:12:30 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:12:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:12:30 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:12:30 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:12:30 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:12:35 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 55ms (Views: 54.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-f279adecfcf115c9e9fee657b7b4fbad9acc771912d0d7d5793f8e5329e672b2.css?body=1" for ::1 at 2016-04-19 23:12:35 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:12:35 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:12:35 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:12:35 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:12:35 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:12:35 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:12:35 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:12:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:12:35 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:12:35 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:12:40 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 21ms (Views: 19.8ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/home.self-55b0c6d5432d1d01642b22accb99c544fdcf0a9bda887b48aaff32a953b3edb8.css?body=1" for ::1 at 2016-04-19 23:12:40 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:12:40 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:12:40 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:12:40 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:12:40 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:12:40 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:12:40 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:12:40 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:12:40 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:12:44 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 51ms (Views: 50.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-8c2573887073ea5980b8683a332dff7bafeb2d0fb3ebfd609a11c31ce3c0c671.css?body=1" for ::1 at 2016-04-19 23:12:44 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:12:44 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:12:44 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:12:44 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:12:44 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:12:44 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:12:44 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:12:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:12:44 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:12:44 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:12:49 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 50ms (Views: 49.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-a470906f74556c75da31f88ace8eb13224aab74f027e2eb8e51f8bf8c573c945.css?body=1" for ::1 at 2016-04-19 23:12:49 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:12:49 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:12:49 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:12:49 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:12:49 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:12:49 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:12:49 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:12:49 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:12:49 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:12:49 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:13:11 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 56ms (Views: 54.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-57affed183ded1b1fbee2dd82c65de552e84557cdfea00574293093ff064a9a0.css?body=1" for ::1 at 2016-04-19 23:13:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:13:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:13:11 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:13:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:13:11 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:13:11 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:13:11 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:13:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:13:11 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:13:11 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:13:15 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 48ms (Views: 47.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-636be43d6dcf6b6da6abcee4dbdaa8bbe319bd9f930e98c9543aef37cc2b8089.css?body=1" for ::1 at 2016-04-19 23:13:16 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:13:16 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:13:16 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:13:16 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:13:16 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:13:16 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:13:16 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:13:16 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:13:16 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:13:16 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:13:20 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 54ms (Views: 52.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-b05c1c251fa546f4eb2f23fe213d691f808543a9c2f07c306ed4461c3fee2c7d.css?body=1" for ::1 at 2016-04-19 23:13:20 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:13:20 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:13:20 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:13:20 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:13:20 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:13:20 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:13:20 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:13:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:13:20 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:13:20 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:13:30 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 39ms (Views: 38.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-2db56b60465e99117a35d0891c8a70b992dc4f49925884e2f9a3f0105b1bde67.css?body=1" for ::1 at 2016-04-19 23:13:30 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:13:30 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:13:30 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:13:30 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:13:30 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:13:30 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:13:30 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:13:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:13:30 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:13:30 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:13:36 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 39ms (Views: 38.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-3db956845c5b9700dba792f3fc8a1108648c2d3987b8896e61d558a37cf7cc16.css?body=1" for ::1 at 2016-04-19 23:13:36 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:13:36 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:13:36 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:13:36 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:13:36 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:13:36 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:13:36 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:13:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:13:36 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:13:36 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:13:40 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 51ms (Views: 50.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-34dff363418dc9ba31188851db7c94ceda92c49c91e43771bd6573a12f837f24.css?body=1" for ::1 at 2016-04-19 23:13:40 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:13:40 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:13:40 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:13:40 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:13:40 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:13:40 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:13:40 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:13:40 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:13:40 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:13:40 -0700 + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 23:14:00 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 23:14:03 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 23:14:12 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.2ms) +Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 23:14:16 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 21ms (Views: 20.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 23:15:06 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 42ms (Views: 41.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-f7bad68398a71188ab02b861e4bffac92af6c31f8f6c5cb6a2e6849542b1b903.css?body=1" for ::1 at 2016-04-19 23:15:06 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:15:06 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:15:06 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:15:06 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:15:06 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:15:06 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:15:06 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:15:06 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:15:06 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:15:06 -0700 + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 23:15:07 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 23:15:32 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.6ms) +Completed 200 OK in 55ms (Views: 54.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-90f4a5ad8d7ea57295fce26e7913bd1518bbda5d38aa16367d78cb54f4ad341a.css?body=1" for ::1 at 2016-04-19 23:15:32 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:15:32 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:15:32 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:15:32 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:15:32 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:15:32 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:15:32 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:15:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:15:32 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:15:32 -0700 + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 23:15:59 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 23:16:00 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 23:16:04 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 26ms (Views: 24.2ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 23:16:05 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.5ms) +Completed 200 OK in 23ms (Views: 22.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 23:16:07 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 23:16:08 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 23:16:09 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 23:16:59 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 54ms (Views: 53.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-0eac7c4b3b275af3734699b4a04644a5d06ea14edcbdb24a6a4c407779bc8e6b.css?body=1" for ::1 at 2016-04-19 23:16:59 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:16:59 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:16:59 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:16:59 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:16:59 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:16:59 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:16:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:16:59 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:16:59 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:16:59 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:17:13 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 42ms (Views: 41.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-a8052c0469db7ac8bc1b755d65da5e8157cc5cfd82b0964b0f15bdf9143942a8.css?body=1" for ::1 at 2016-04-19 23:17:14 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:17:14 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:17:14 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:17:14 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:17:14 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:17:14 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:17:14 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:17:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:17:14 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:17:14 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:17:41 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 59ms (Views: 58.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-b7b1b4976aac3f4231997e2e9f3061e306cfa70f4f597293634e1de40a211eb4.css?body=1" for ::1 at 2016-04-19 23:17:41 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:17:41 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:17:41 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:17:41 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:17:41 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:17:41 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:17:41 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:17:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:17:41 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:17:41 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 23:18:11 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 23:18:28 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 53ms (Views: 51.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-c644762d89babc34b7af6e24c4bd5b4012ba3c680d4ed666f050721dc800d7f4.css?body=1" for ::1 at 2016-04-19 23:18:28 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:18:28 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:18:28 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:18:28 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:18:28 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:18:28 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:18:28 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:18:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:18:28 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:18:28 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 23:18:49 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 23:18:51 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 49ms (Views: 47.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-9c0f9c9492e95c93e0317236553e0dee351f9221e98d412d17ce1950f48ec63c.css?body=1" for ::1 at 2016-04-19 23:18:52 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:18:52 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:18:52 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:18:52 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:18:52 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:18:52 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:18:52 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:18:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:18:52 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:18:52 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 23:18:57 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 52ms (Views: 50.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-d58e8fb8c66068ad4f25d3f7e959532d0825f3041b59c289a5231feec9badc1d.css?body=1" for ::1 at 2016-04-19 23:18:57 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:18:57 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:18:57 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:18:57 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:18:57 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:18:57 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:18:57 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:18:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:18:57 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:18:57 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 23:19:01 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 59ms (Views: 57.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-6aa1c78f5813db3439de44720d0f00c9848a5ef244aa5d477c5d4548bcb62f7f.css?body=1" for ::1 at 2016-04-19 23:19:01 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:19:01 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:19:01 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:19:01 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:19:01 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:19:01 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:19:01 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:19:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:19:01 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:19:01 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 23:19:08 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 58ms (Views: 56.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-3355a419cd041796c44f5601a8b93c0ea2fe4a5653063b72f58947d0ea177484.css?body=1" for ::1 at 2016-04-19 23:19:08 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:19:08 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:19:08 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:19:08 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:19:08 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:19:08 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:19:08 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:19:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:19:08 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:19:08 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:19:21 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 42ms (Views: 41.4ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 23:19:23 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 23:20:00 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 23:20:01 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 23:20:22 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 21ms (Views: 19.9ms | ActiveRecord: 0.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 23:20:26 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 23:20:42 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 23:21:02 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 60ms (Views: 59.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-e057d3050135d1a2c7f84435b42bb4b321968b3f8315051fb4c564a27dced890.css?body=1" for ::1 at 2016-04-19 23:21:02 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:21:02 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:21:02 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:21:02 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:21:02 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:21:02 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:21:02 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:21:02 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:21:02 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:21:02 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:21:11 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 47ms (Views: 45.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-3ed5203be8ca6c76c6a9d48c319895770d9e186f2fd492c9dc0b469657270363.css?body=1" for ::1 at 2016-04-19 23:21:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:21:11 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:21:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:21:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:21:11 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:21:11 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:21:11 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:21:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:21:11 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:21:11 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:21:16 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 57ms (Views: 56.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-a8759e0131ce7e7c589c53d3b51a5d5246fc6067cd61417a2d62185d1c7e254a.css?body=1" for ::1 at 2016-04-19 23:21:16 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:21:16 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:21:16 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:21:16 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:21:16 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:21:16 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:21:16 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:21:16 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:21:16 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:21:16 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:21:19 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 56ms (Views: 54.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-aa2a1cf22aebcde086cbce1d78709fafe4075d5669c08308bdf233b0da3a70c7.css?body=1" for ::1 at 2016-04-19 23:21:19 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:21:19 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:21:19 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:21:19 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:21:19 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:21:19 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:21:19 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:21:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:21:19 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:21:19 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:21:24 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-3ed5203be8ca6c76c6a9d48c319895770d9e186f2fd492c9dc0b469657270363.css?body=1" for ::1 at 2016-04-19 23:21:24 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:21:24 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:21:24 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:21:24 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:21:24 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:21:24 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:21:24 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:21:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:21:24 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:21:28 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 58ms (Views: 57.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-1ed76f3c3fb499cc5ec414564acebf95040a4139e5c2179f4f19ab83fce7acf1.css?body=1" for ::1 at 2016-04-19 23:21:28 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:21:28 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:21:28 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:21:28 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:21:28 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:21:28 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:21:28 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:21:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:21:28 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:21:28 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:21:32 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 58ms (Views: 57.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-27e7ea521b83230e6afa36b9c213f97a0e6aba22d1472a277d3869b8c0b412a9.css?body=1" for ::1 at 2016-04-19 23:21:32 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:21:32 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:21:32 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:21:32 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:21:32 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:21:32 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:21:32 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:21:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:21:32 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:21:32 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:21:37 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-a8759e0131ce7e7c589c53d3b51a5d5246fc6067cd61417a2d62185d1c7e254a.css?body=1" for ::1 at 2016-04-19 23:21:37 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:21:37 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:21:37 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:21:37 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:21:37 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:21:37 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:21:37 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:21:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:21:37 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:21:46 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 48ms (Views: 47.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-293791345ab4e6a0de1e3f37bb25e8ee55888b2c77055fe39f29c6828ae6e8ef.css?body=1" for ::1 at 2016-04-19 23:21:46 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:21:46 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:21:46 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:21:46 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:21:46 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:21:46 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:21:46 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:21:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:21:46 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:21:46 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:21:57 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 21ms (Views: 20.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-27e7ea521b83230e6afa36b9c213f97a0e6aba22d1472a277d3869b8c0b412a9.css?body=1" for ::1 at 2016-04-19 23:21:57 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:21:57 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:21:57 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:21:57 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:21:57 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:21:57 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:21:57 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:21:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:21:57 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:22:01 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-3ed5203be8ca6c76c6a9d48c319895770d9e186f2fd492c9dc0b469657270363.css?body=1" for ::1 at 2016-04-19 23:22:01 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:22:01 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:22:01 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:22:01 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:22:01 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:22:01 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:22:01 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:22:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:22:01 -0700 + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 23:22:05 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 23:22:10 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 23:22:15 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.2ms) +Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 23:22:35 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 43ms (Views: 41.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-ce26ca9a261cc52151c27775b401ad6dd3e5bc663bb6e03f5032329edba39a59.css?body=1" for ::1 at 2016-04-19 23:22:35 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:22:35 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:22:35 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:22:35 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:22:35 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:22:35 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:22:35 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:22:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:22:35 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:22:35 -0700 + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 23:22:40 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.2ms) +Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-3ed5203be8ca6c76c6a9d48c319895770d9e186f2fd492c9dc0b469657270363.css?body=1" for ::1 at 2016-04-19 23:22:40 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:22:40 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:22:40 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:22:40 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:22:40 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:22:40 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:22:40 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:22:40 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:22:40 -0700 + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 23:22:53 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.2ms) +Completed 200 OK in 43ms (Views: 41.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-ec6007a815879da072202ff76c0960b63df6156cb00cfb1c7184c78990b095a9.css?body=1" for ::1 at 2016-04-19 23:22:53 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:22:53 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:22:53 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:22:53 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:22:53 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:22:53 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:22:53 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:22:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:22:53 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:22:53 -0700 + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 23:22:54 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-ec6007a815879da072202ff76c0960b63df6156cb00cfb1c7184c78990b095a9.css?body=1" for ::1 at 2016-04-19 23:22:54 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:22:54 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:22:54 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:22:54 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:22:54 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:22:54 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:22:54 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:22:54 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:22:54 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:25:05 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 23:25:12 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Play Video Games"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Play Video Games"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 23:25:49 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Play Video Games"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Play Video Games"]] + Rendered home/single_task.html.erb within layouts/application (0.2ms) +Completed 200 OK in 58ms (Views: 56.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-230e8a11f4ecccafcca417843c2ef3f294763eb9d95ca2499cf1884078a8d99c.css?body=1" for ::1 at 2016-04-19 23:25:49 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:25:49 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:25:49 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:25:49 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:25:49 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:25:49 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:25:49 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:25:49 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:25:49 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:25:49 -0700 + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 23:25:53 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Play Video Games"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Play Video Games"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-ec6007a815879da072202ff76c0960b63df6156cb00cfb1c7184c78990b095a9.css?body=1" for ::1 at 2016-04-19 23:25:53 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 23:25:53 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 23:25:53 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 23:25:53 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:25:53 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 23:25:53 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 23:25:53 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 23:25:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 23:25:53 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-19 23:25:53 -0700 + + +Started GET "/" for ::1 at 2016-04-19 23:26:03 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-20 09:18:31 -0700 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 235ms (Views: 224.0ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-20 09:18:32 -0700 + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 09:20:25 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.6ms) +Completed 200 OK in 27ms (Views: 18.1ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-20 09:20:27 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 09:22:33 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 30ms (Views: 28.8ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 09:24:46 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.8ms) +Completed 200 OK in 71ms (Views: 70.1ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/home.self-f04944a58487ebbb1f81c3e954a632465dfb4d72ed7f6bfe11ab0987e937628b.css?body=1" for ::1 at 2016-04-20 09:24:47 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:24:47 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-20 09:24:47 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:24:47 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:24:47 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:24:47 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:24:47 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:24:47 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:24:47 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-20 09:24:47 -0700 + + +Started GET "/" for ::1 at 2016-04-20 09:24:55 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 19ms (Views: 18.6ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 09:25:15 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 41ms (Views: 39.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-a89db6faad64ccf052f46c17fdd464e26dd85f01acd718df28f88b9f17afc46f.css?body=1" for ::1 at 2016-04-20 09:25:15 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:25:15 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:25:15 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-20 09:25:15 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:25:15 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:25:15 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:25:15 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:25:15 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:25:15 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-20 09:25:15 -0700 + + +Started GET "/" for ::1 at 2016-04-20 09:25:25 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-ec6007a815879da072202ff76c0960b63df6156cb00cfb1c7184c78990b095a9.css?body=1" for ::1 at 2016-04-20 09:25:25 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:25:25 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:25:25 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-20 09:25:25 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:25:25 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:25:25 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:25:25 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:25:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:25:25 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-20 09:25:25 -0700 + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-20 09:25:27 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-20 09:26:19 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 42ms (Views: 41.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-061c21351b559ee15bd15f610ee744a9cb680da173e0bb9cbe74423964f84617.css?body=1" for ::1 at 2016-04-20 09:26:19 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-20 09:26:19 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:26:19 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:26:19 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:26:19 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:26:19 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:26:19 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:26:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:26:19 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-20 09:26:19 -0700 + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-20 09:26:27 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 35ms (Views: 34.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-9bf25aa8c31f377d1dac3ea9703c33b06ef9e94c8939917cb41d5c6996d4ad43.css?body=1" for ::1 at 2016-04-20 09:26:27 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-20 09:26:27 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:26:27 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:26:27 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:26:27 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:26:27 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:26:27 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:26:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:26:27 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-20 09:26:27 -0700 + + +Started GET "/" for ::1 at 2016-04-20 09:26:55 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:27:00 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 49ms (Views: 47.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-7fef91a01c17193296f0e8c1c863ccfaf1d026027b630c48d809abed06dc8801.css?body=1" for ::1 at 2016-04-20 09:27:00 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:27:00 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:27:00 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:27:00 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-20 09:27:00 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:27:00 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:27:00 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:27:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:27:00 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-20 09:27:00 -0700 + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 09:27:02 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 25ms (Views: 23.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:27:07 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 09:28:49 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.3ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:28:51 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:28:52 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:32:24 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-20 09:32:24 -0700 + + +Started GET "/" for ::1 at 2016-04-20 09:32:29 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-20 09:32:32 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:32:37 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 09:32:47 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:32:48 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 09:32:49 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Play Video Games"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Play Video Games"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:32:51 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.1ms) + + +Started GET "/Call%20Mom" for ::1 at 2016-04-20 09:32:52 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Call Mom"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Call Mom"]] + Rendered home/single_task.html.erb within layouts/application (0.2ms) +Completed 200 OK in 19ms (Views: 17.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:32:53 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.2ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-20 09:32:54 -0700 + +ActionController::RoutingError (No route matches [GET] "/She%20worries,%20you%20know."): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (73.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.5ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-20 09:32:54 -0700 + +ActionController::RoutingError (No route matches [GET] "/She%20worries,%20you%20know."): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (82.6ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-20 09:33:17 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "High Five Somebody You Don't Know"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/Nap." for ::1 at 2016-04-20 09:33:20 -0700 + +ActionController::RoutingError (No route matches [GET] "/Nap."): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (58.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (36.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.0ms) + + +Started GET "/Nap." for ::1 at 2016-04-20 09:33:20 -0700 + +ActionController::RoutingError (No route matches [GET] "/Nap."): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (60.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.9ms) + + +Started GET "/" for ::1 at 2016-04-20 09:34:45 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 21ms (Views: 18.8ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/home.self-7fef91a01c17193296f0e8c1c863ccfaf1d026027b630c48d809abed06dc8801.css?body=1" for ::1 at 2016-04-20 09:34:45 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:34:45 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:34:45 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:34:45 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-20 09:34:45 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:34:45 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:34:45 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:34:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:34:45 -0700 + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 09:34:46 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-20 09:34:48 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"She worries, you know."} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "She worries, you know."]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:34:49 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Nap." for ::1 at 2016-04-20 09:34:50 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Nap."} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Nap."]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:34:52 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-20 09:34:53 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"She worries, you know."} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "She worries, you know."]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:36:00 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.6ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-20 09:36:01 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 09:36:04 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 09:38:39 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 23ms (Views: 21.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:38:41 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 12:51:27 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 12:51:29 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 12:51:32 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 12:51:40 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-20 12:51:42 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Second Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Second Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 12:51:46 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.2ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 12:51:51 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Play Video Games"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Play Video Games"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 12:52:00 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-20 12:52:02 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 12:52:08 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-20 12:52:28 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 21ms (Views: 20.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 12:52:30 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-20 13:11:40 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Second Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Second Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 13:11:41 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-20 13:11:43 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"She worries, you know."} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "She worries, you know."]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 13:11:45 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/Nap." for ::1 at 2016-04-20 13:11:46 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Nap."} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Nap."]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 13:11:56 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 13:11:56 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 13:12:02 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-20 13:12:03 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 13:12:04 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-20 13:12:07 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "High Five Somebody You Don't Know"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 13:12:08 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 13:12:28 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 42ms (Views: 41.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-e3f256e65aebed4d2b6b870830e87997b194dc7921be2b711b23d499f503a75f.css?body=1" for ::1 at 2016-04-20 13:12:28 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 13:12:28 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 13:12:28 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 13:12:28 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 13:12:28 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 13:12:28 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-20 13:12:28 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 13:12:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 13:12:28 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-20 13:12:28 -0700 + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 13:12:29 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 13:12:33 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 13:12:34 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Play Video Games"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Play Video Games"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 13:12:35 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/Call%20Mom" for ::1 at 2016-04-20 13:12:36 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Call Mom"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Call Mom"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 13:12:38 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-20 13:12:43 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Second Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Second Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 24ms (Views: 22.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:03:59 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-e3f256e65aebed4d2b6b870830e87997b194dc7921be2b711b23d499f503a75f.css?body=1" for ::1 at 2016-04-20 14:03:59 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-20 14:03:59 -0700 + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-20 14:06:03 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "High Five Somebody You Don't Know"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-20 14:06:45 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "High Five Somebody You Don't Know"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 38ms (Views: 36.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-c749618927dafe9a0feccc292066ac5023087d79d18103f50a4d6ac774ddf84e.css?body=1" for ::1 at 2016-04-20 14:06:46 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 14:06:46 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:06:46 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-20 14:06:46 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 14:06:46 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 14:06:46 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:06:46 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 14:06:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 14:06:46 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-20 14:06:46 -0700 + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-20 14:06:47 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "High Five Somebody You Don't Know"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-c749618927dafe9a0feccc292066ac5023087d79d18103f50a4d6ac774ddf84e.css?body=1" for ::1 at 2016-04-20 14:06:47 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 14:06:47 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 14:06:47 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 14:06:47 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 14:06:47 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-20 14:06:47 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:06:47 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:06:47 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 14:06:47 -0700 + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-20 14:06:48 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "High Five Somebody You Don't Know"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 13.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:06:49 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 14:06:50 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:06:51 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 14:08:02 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:08:03 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 14:08:04 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:08:38 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-20 14:08:40 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:08:42 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 14:08:43 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Play Video Games"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Play Video Games"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:08:44 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-20 14:08:46 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "High Five Somebody You Don't Know"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:08:48 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-20 14:08:49 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Plant Flowers"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Plant Flowers"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:08:51 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 14:10:25 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:10:34 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.2ms) + + +Started GET "/Call%20Mom" for ::1 at 2016-04-20 14:10:35 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Call Mom"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Call Mom"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:10:38 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.2ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 14:10:40 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Play Video Games"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Play Video Games"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 14:12:17 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Play Video Games"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Play Video Games"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 40ms (Views: 39.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-d486973efbff09d8d5a8cab95588c635d5a4bc058c1e0d1246dfd85436638252.css?body=1" for ::1 at 2016-04-20 14:12:17 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 14:12:17 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 14:12:17 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-20 14:12:17 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 14:12:17 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 14:12:17 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:12:17 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:12:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 14:12:17 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-20 14:12:17 -0700 + + +Started GET "/" for ::1 at 2016-04-20 14:12:18 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-20 14:12:21 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:12:22 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 14:12:24 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Play Video Games"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Play Video Games"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 14:12:45 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Play Video Games"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Play Video Games"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 42ms (Views: 41.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-10736d02f213a98f17d507cb7241bda85f33d4788f9cc09e1823d246ee1a6c5f.css?body=1" for ::1 at 2016-04-20 14:12:45 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 14:12:45 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 14:12:45 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 14:12:45 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 14:12:45 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-20 14:12:45 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:12:45 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:12:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 14:12:45 -0700 + + +Started GET "/" for ::1 at 2016-04-20 14:12:47 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.2ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-20 14:12:49 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "High Five Somebody You Don't Know"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 14:12:50 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 14:12:51 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:12:52 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:15:11 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 50ms (Views: 48.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-cab8f490785ec1302f570782ba2b7ad70f3d3cc0c76062e3015de05f35c71e3f.css?body=1" for ::1 at 2016-04-20 14:15:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 14:15:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 14:15:11 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 14:15:11 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-20 14:15:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 14:15:11 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:15:11 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:15:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 14:15:11 -0700 + + +Started GET "/" for ::1 at 2016-04-20 14:15:24 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 40ms (Views: 39.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-442672ed276ade24ad9f94981ede902c4e7722702d794d8f954daaa64196fa86.css?body=1" for ::1 at 2016-04-20 14:15:24 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 14:15:24 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 14:15:24 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 14:15:24 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-20 14:15:24 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 14:15:24 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:15:24 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:15:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 14:15:24 -0700 + + +Started GET "/" for ::1 at 2016-04-20 14:15:30 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 43ms (Views: 41.9ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/home.self-45ff64c487ebb42949fba49fc641b4340caf10747ee2fefb0f279f29f415673c.css?body=1" for ::1 at 2016-04-20 14:15:30 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 14:15:30 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 14:15:30 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 14:15:30 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 14:15:30 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-20 14:15:30 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:15:30 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:15:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 14:15:30 -0700 + + +Started GET "/" for ::1 at 2016-04-20 14:15:34 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 57ms (Views: 56.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-6c37ff29590b65b70bf88aa7a7de77f40b0f6787f33158654a552264928a917b.css?body=1" for ::1 at 2016-04-20 14:15:34 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 14:15:34 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-20 14:15:34 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 14:15:34 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 14:15:34 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 14:15:34 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:15:34 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:15:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 14:15:34 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 14:15:41 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:15:42 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:15:49 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 41ms (Views: 40.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-e19c41b63331edaa4f1c38cc08a2bbe6bd76871ba06380b5a94e929f81f8ad2a.css?body=1" for ::1 at 2016-04-20 14:15:49 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-20 14:15:49 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 14:15:49 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 14:15:49 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 14:15:49 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 14:15:49 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:15:49 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:15:49 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 14:15:49 -0700 + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-20 14:15:51 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:15:53 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 14:21:09 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:21:14 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-20 14:21:18 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:21:29 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-20 14:21:31 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Second Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Second Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:21:31 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-20 14:27:22 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"She worries, you know."} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "She worries, you know."]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:27:28 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-20 14:27:32 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"She worries, you know."} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "She worries, you know."]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:27:44 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 14:28:30 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/test" for ::1 at 2016-04-20 14:29:14 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"test"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "test"]] + Rendered home/single_task.html.erb within layouts/application (2.7ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined method `title' for nil:NilClass): + 6: + 7: + 8: + 9: <%= @selected_task.title %> + 10: <%= @selected_task.description %> + 11: <%= @selected_task.completed_at %> + 12: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb___1593584848030514549_70358007013040' + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.1ms) + + +Started GET "/title" for ::1 at 2016-04-20 14:29:19 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"title"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "title"]] + Rendered home/single_task.html.erb within layouts/application (2.5ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `title' for nil:NilClass): + 6: + 7: + 8: + 9: <%= @selected_task.title %> + 10: <%= @selected_task.description %> + 11: <%= @selected_task.completed_at %> + 12: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb___1593584848030514549_70358007013040' + app/controllers/home_controller.rb:8:in `single_task' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (48.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (5.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.8ms) + + +Started GET "/" for ::1 at 2016-04-20 14:30:32 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:30:33 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:30:35 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:30:37 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 14ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:30:38 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-20 14:38:44 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:38:50 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 14:38:51 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Play Video Games"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Play Video Games"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:38:53 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 14:38:54 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:38:59 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 14:42:49 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 21ms (Views: 20.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:42:52 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 14:42:55 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:43:10 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:43:34 -0700 + +NoMethodError (undefined method `show' for #): + config/routes.rb:4:in `block in ' + config/routes.rb:1:in `' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (49.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.8ms) + + +Started GET "/" for ::1 at 2016-04-20 14:43:38 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 23ms (Views: 21.4ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/home.self-e19c41b63331edaa4f1c38cc08a2bbe6bd76871ba06380b5a94e929f81f8ad2a.css?body=1" for ::1 at 2016-04-20 14:43:39 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 14:43:39 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 14:43:39 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 14:43:39 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 14:43:39 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-20 14:43:39 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:43:39 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:43:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 14:43:39 -0700 + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 14:43:47 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.2ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 09:15:47 -0700 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by HomeController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.0ms) + +NameError - undefined local variable or method `just_broke_it' for #: + app/controllers/home_controller.rb:4:in `index' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/90fd8b55125bff32/variables" for ::1 at 2016-04-21 09:15:47 -0700 + + +Started POST "/__better_errors/90fd8b55125bff32/variables" for ::1 at 2016-04-21 09:16:09 -0700 + + +Started POST "/__better_errors/90fd8b55125bff32/eval" for ::1 at 2016-04-21 09:16:21 -0700 + + +Started POST "/__better_errors/90fd8b55125bff32/eval" for ::1 at 2016-04-21 09:18:07 -0700 + + +Started GET "/" for ::1 at 2016-04-21 09:20:19 -0700 +Processing by HomeController#index as HTML +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) + +RuntimeError - : + app/controllers/home_controller.rb:4:in `index' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c9c9e54dc9e4b7f4/variables" for ::1 at 2016-04-21 09:20:19 -0700 + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" + + +Started POST "/__better_errors/c9c9e54dc9e4b7f4/eval" for ::1 at 2016-04-21 09:20:49 -0700 + + +Started POST "/__better_errors/c9c9e54dc9e4b7f4/variables" for ::1 at 2016-04-21 09:21:54 -0700 + + +Started POST "/__better_errors/c9c9e54dc9e4b7f4/variables" for ::1 at 2016-04-21 09:21:54 -0700 + + +Started POST "/__better_errors/c9c9e54dc9e4b7f4/variables" for ::1 at 2016-04-21 09:25:22 -0700 + + +Started POST "/__better_errors/c9c9e54dc9e4b7f4/variables" for ::1 at 2016-04-21 09:25:34 -0700 + + +Started POST "/__better_errors/c9c9e54dc9e4b7f4/variables" for ::1 at 2016-04-21 09:25:35 -0700 + + +Started POST "/__better_errors/c9c9e54dc9e4b7f4/variables" for ::1 at 2016-04-21 09:25:36 -0700 + + +Started POST "/__better_errors/c9c9e54dc9e4b7f4/variables" for ::1 at 2016-04-21 09:25:37 -0700 + + +Started POST "/__better_errors/c9c9e54dc9e4b7f4/variables" for ::1 at 2016-04-21 09:25:40 -0700 + + +Started POST "/__better_errors/c9c9e54dc9e4b7f4/eval" for ::1 at 2016-04-21 09:47:13 -0700 + + +Started POST "/__better_errors/c9c9e54dc9e4b7f4/eval" for ::1 at 2016-04-21 09:47:25 -0700 + + +Started POST "/__better_errors/c9c9e54dc9e4b7f4/eval" for ::1 at 2016-04-21 09:47:27 -0700 + + +Started POST "/__better_errors/c9c9e54dc9e4b7f4/eval" for ::1 at 2016-04-21 09:47:35 -0700 + + +Started GET "/" for ::1 at 2016-04-21 09:47:51 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (5.4ms) +Completed 200 OK in 219ms (Views: 217.4ms | ActiveRecord: 0.6ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-21 09:47:52 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.8ms) +Completed 200 OK in 25ms (Views: 17.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 09:47:53 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.2ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-21 09:47:54 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Play Video Games"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Play Video Games"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 09:47:56 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 29ms (Views: 28.7ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-21 09:48:04 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 25ms (Views: 23.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 09:48:06 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.1ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-21 09:48:08 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "High Five Somebody You Don't Know"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 20ms (Views: 18.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 09:48:18 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-21 09:48:20 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Play Video Games"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Play Video Games"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 18ms (Views: 15.4ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-21 09:48:21 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-21 09:51:54 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 09:51:57 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 21ms (Views: 20.9ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-21 09:52:07 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 09:52:09 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-21 09:52:10 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Second Lunch"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Second Lunch"]] + Rendered home/single_task.html.erb within layouts/application (0.2ms) +Completed 200 OK in 32ms (Views: 30.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 09:52:11 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.2ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-21 09:52:12 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "High Five Somebody You Don't Know"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 09:52:13 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 09:52:14 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "The First Task"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 09:52:23 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 20ms (Views: 19.7ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 10:06:36 -0700 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (6.6ms) +Completed 200 OK in 239ms (Views: 230.1ms | ActiveRecord: 0.5ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-21 10:06:39 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.6ms) +Completed 200 OK in 21ms (Views: 13.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2016-04-21 10:06:46 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"tasks"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "tasks"]] + Rendered home/single_task.html.erb within layouts/application (5.2ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `title' for nil:NilClass: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb___2375782235465981605_70361824550400' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + app/controllers/home_controller.rb:8:in `single_task' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/cd914715778477c7/variables" for ::1 at 2016-04-21 10:06:46 -0700 + + +Started GET "/tasks" for ::1 at 2016-04-21 10:07:09 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"tasks"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "tasks"]] + Rendered home/single_task.html.erb within layouts/application (2.5ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.5ms) + +NoMethodError - undefined method `title' for nil:NilClass: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb___2375782235465981605_70361824550400' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + app/controllers/home_controller.rb:8:in `single_task' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/fb8c53f2d468cb0a/variables" for ::1 at 2016-04-21 10:07:09 -0700 + + +Started GET "/tasks" for ::1 at 2016-04-21 10:09:05 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"tasks"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "tasks"]] + Rendered home/single_task.html.erb within layouts/application (2.5ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.6ms) + +NoMethodError - undefined method `title' for nil:NilClass: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb___2375782235465981605_70361824550400' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + app/controllers/home_controller.rb:8:in `single_task' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b60472b2b08669ae/variables" for ::1 at 2016-04-21 10:09:05 -0700 + + +Started GET "/tasks" for ::1 at 2016-04-21 10:09:06 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"tasks"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "tasks"]] + Rendered home/single_task.html.erb within layouts/application (2.7ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `title' for nil:NilClass: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb___2375782235465981605_70361824550400' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + app/controllers/home_controller.rb:8:in `single_task' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/cf01fb90b275aa15/variables" for ::1 at 2016-04-21 10:09:06 -0700 + + +Started GET "/tasks" for ::1 at 2016-04-21 10:09:07 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"tasks"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "tasks"]] + Rendered home/single_task.html.erb within layouts/application (2.4ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `title' for nil:NilClass: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb___2375782235465981605_70361824550400' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + app/controllers/home_controller.rb:8:in `single_task' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/67c0726e17354807/variables" for ::1 at 2016-04-21 10:09:07 -0700 + + +Started POST "/__better_errors/67c0726e17354807/variables" for ::1 at 2016-04-21 10:09:14 -0700 + + +Started GET "/tasks" for ::1 at 2016-04-21 10:09:26 -0700 + +AbstractController::ActionNotFound - The action 'index' could not be found for TasksController: + actionpack (4.2.6) lib/abstract_controller/base.rb:132:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/232e92086812227c/variables" for ::1 at 2016-04-21 10:09:26 -0700 + + +Started GET "/tasks" for ::1 at 2016-04-21 10:09:28 -0700 + +AbstractController::ActionNotFound - The action 'index' could not be found for TasksController: + actionpack (4.2.6) lib/abstract_controller/base.rb:132:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/cc6a41be7887b7a3/variables" for ::1 at 2016-04-21 10:09:28 -0700 + + +Started GET "/tasks" for ::1 at 2016-04-21 10:10:03 -0700 + +AbstractController::ActionNotFound - The action 'index' could not be found for TasksController: + actionpack (4.2.6) lib/abstract_controller/base.rb:132:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/225e4394e12b1d6d/variables" for ::1 at 2016-04-21 10:10:03 -0700 + + +Started GET "/tasks" for ::1 at 2016-04-21 10:56:09 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"tasks"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "tasks"]] + Rendered home/single_task.html.erb within layouts/application (2.7ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.5ms) + +NoMethodError - undefined method `title' for nil:NilClass: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb___2375782235465981605_70361824550400' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + app/controllers/home_controller.rb:8:in `single_task' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/2436c614b8094a9d/variables" for ::1 at 2016-04-21 10:56:09 -0700 + + +Started GET "/" for ::1 at 2016-04-21 10:56:11 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 20ms (Views: 19.7ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 11:04:34 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-e19c41b63331edaa4f1c38cc08a2bbe6bd76871ba06380b5a94e929f81f8ad2a.css?body=1" for ::1 at 2016-04-21 11:04:34 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 11:04:34 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 11:04:34 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 11:04:34 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 11:04:34 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 11:04:34 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 11:04:34 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 11:04:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 11:04:34 -0700 + + +Started GET "/" for ::1 at 2016-04-21 11:04:39 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 11:05:28 -0700 +Processing by HomeController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 32ms (Views: 30.3ms | ActiveRecord: 0.6ms) + + +Started GET "/" for ::1 at 2016-04-21 11:05:30 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 11:05:44 -0700 +Processing by HomeController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 37ms (Views: 35.0ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/home.self-e19c41b63331edaa4f1c38cc08a2bbe6bd76871ba06380b5a94e929f81f8ad2a.css?body=1" for ::1 at 2016-04-21 11:05:45 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 11:05:45 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 11:05:45 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 11:05:45 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 11:05:45 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 11:05:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 11:05:45 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 11:05:45 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 11:05:45 -0700 + + +Started GET "/add_task" for ::1 at 2016-04-21 11:05:46 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"add_task"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "add_task"]] + Rendered home/single_task.html.erb within layouts/application (3.4ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `title' for nil:NilClass: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb___2375782235465981605_70361823921720' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + app/controllers/home_controller.rb:8:in `single_task' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/add_task" for ::1 at 2016-04-21 11:05:46 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"add_task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "add_task"]] + Rendered home/single_task.html.erb within layouts/application (3.1ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `title' for nil:NilClass: + app/views/home/single_task.html.erb:9:in `_app_views_home_single_task_html_erb___2375782235465981605_70361824550400' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + app/controllers/home_controller.rb:8:in `single_task' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/9893a02ffe87f495/variables" for ::1 at 2016-04-21 11:05:46 -0700 + + +Started GET "/" for ::1 at 2016-04-21 11:06:03 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 20ms (Views: 17.8ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/home.self-e19c41b63331edaa4f1c38cc08a2bbe6bd76871ba06380b5a94e929f81f8ad2a.css?body=1" for ::1 at 2016-04-21 11:06:03 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 11:06:03 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 11:06:03 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 11:06:03 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 11:06:03 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 11:06:03 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 11:06:03 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 11:06:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 11:06:03 -0700 + + +Started GET "/add_task" for ::1 at 2016-04-21 11:06:04 -0700 +Processing by HomeController#add_task as HTML + Rendered home/add_task.html.erb within layouts/application (0.3ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.0ms) + + +Started GET "/add_task" for ::1 at 2016-04-21 11:09:01 -0700 +Processing by HomeController#add_task as HTML + Rendered home/add_task.html.erb within layouts/application (0.3ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.0ms) + + +Started GET "/add_task" for ::1 at 2016-04-21 11:12:24 -0700 +Processing by HomeController#add_task as HTML + Rendered home/add_task.html.erb within layouts/application (2.8ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + +ArgumentError - First argument in form cannot contain nil or be empty: + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:432:in `form_for' + app/views/home/add_task.html.erb:18:in `_app_views_home_add_task_html_erb__3094324627423164001_70361825216480' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4e02331c40f2a81a/variables" for ::1 at 2016-04-21 11:12:24 -0700 + + +Started GET "/add_task" for ::1 at 2016-04-21 11:15:51 -0700 +Processing by HomeController#add_task as HTML + Rendered home/add_task.html.erb within layouts/application (2.4ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +ArgumentError - First argument in form cannot contain nil or be empty: + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:432:in `form_for' + app/views/home/add_task.html.erb:1:in `_app_views_home_add_task_html_erb__3094324627423164001_70361795048100' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/d1d9c4e330b09799/variables" for ::1 at 2016-04-21 11:15:51 -0700 + + +Started GET "/add_task" for ::1 at 2016-04-21 11:15:53 -0700 +Processing by HomeController#add_task as HTML + Rendered home/add_task.html.erb within layouts/application (2.3ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +ArgumentError - First argument in form cannot contain nil or be empty: + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:432:in `form_for' + app/views/home/add_task.html.erb:1:in `_app_views_home_add_task_html_erb__3094324627423164001_70361795048100' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/64b4bef62d9d2bc6/variables" for ::1 at 2016-04-21 11:15:53 -0700 + + +Started POST "/__better_errors/64b4bef62d9d2bc6/eval" for ::1 at 2016-04-21 11:17:11 -0700 + + +Started GET "/add_task" for ::1 at 2016-04-21 11:21:46 -0700 +Processing by HomeController#add_task as HTML + Rendered home/add_task.html.erb within layouts/application (19.4ms) +Completed 500 Internal Server Error in 34ms (ActiveRecord: 0.4ms) + +NoMethodError - undefined method `tasks_path' for #<#:0x007ffcc70dac20> +Did you mean? asset_path: + actionpack (4.2.6) lib/action_dispatch/routing/polymorphic_routes.rb:220:in `polymorphic_method' + actionpack (4.2.6) lib/action_dispatch/routing/polymorphic_routes.rb:134:in `polymorphic_path' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:466:in `apply_form_for_options!' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:434:in `form_for' + app/views/home/add_task.html.erb:1:in `_app_views_home_add_task_html_erb__3094324627423164001_70361795048100' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/2bc204fc4a65698f/variables" for ::1 at 2016-04-21 11:21:46 -0700 + + +Started GET "/add_task" for ::1 at 2016-04-21 11:21:48 -0700 +Processing by HomeController#add_task as HTML + Rendered home/add_task.html.erb within layouts/application (16.7ms) +Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `tasks_path' for #<#:0x007ffcc3b7ae40> +Did you mean? asset_path: + actionpack (4.2.6) lib/action_dispatch/routing/polymorphic_routes.rb:220:in `polymorphic_method' + actionpack (4.2.6) lib/action_dispatch/routing/polymorphic_routes.rb:134:in `polymorphic_path' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:466:in `apply_form_for_options!' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:434:in `form_for' + app/views/home/add_task.html.erb:1:in `_app_views_home_add_task_html_erb__3094324627423164001_70361795048100' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a6419a2d3ad0c642/variables" for ::1 at 2016-04-21 11:21:48 -0700 + + +Started GET "/" for ::1 at 2016-04-21 11:23:30 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 23ms (Views: 21.1ms | ActiveRecord: 0.5ms) + + +Started GET "/add_task" for ::1 at 2016-04-21 11:23:32 -0700 +Processing by TasksController#add_task as HTML + Rendered tasks/add_task.html.erb within layouts/application (19.8ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `tasks_path' for #<#:0x007ffcc5d67be8> +Did you mean? asset_path: + actionpack (4.2.6) lib/action_dispatch/routing/polymorphic_routes.rb:220:in `polymorphic_method' + actionpack (4.2.6) lib/action_dispatch/routing/polymorphic_routes.rb:134:in `polymorphic_path' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:466:in `apply_form_for_options!' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:434:in `form_for' + app/views/tasks/add_task.html.erb:1:in `_app_views_tasks_add_task_html_erb__3259814232050186557_70361813821080' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/add_task" for ::1 at 2016-04-21 11:23:32 -0700 +Processing by TasksController#add_task as HTML + Rendered tasks/add_task.html.erb within layouts/application (16.5ms) +Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `tasks_path' for #<#:0x007ffcc472e3b8> +Did you mean? asset_path: + actionpack (4.2.6) lib/action_dispatch/routing/polymorphic_routes.rb:220:in `polymorphic_method' + actionpack (4.2.6) lib/action_dispatch/routing/polymorphic_routes.rb:134:in `polymorphic_path' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:466:in `apply_form_for_options!' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:434:in `form_for' + app/views/tasks/add_task.html.erb:1:in `_app_views_tasks_add_task_html_erb__3259814232050186557_70361779251540' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/06b67e593a673b7c/variables" for ::1 at 2016-04-21 11:23:32 -0700 + + +Started GET "/add_task" for ::1 at 2016-04-21 11:23:54 -0700 +Processing by TasksController#add_task as HTML + Rendered tasks/add_task.html.erb within layouts/application (0.4ms) +Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.0ms) + + +Started GET "/add_task" for ::1 at 2016-04-21 11:24:09 -0700 +Processing by TasksController#add_task as HTML + Rendered tasks/add_task.html.erb within layouts/application (28.2ms) +Completed 500 Internal Server Error in 38ms (ActiveRecord: 0.4ms) + +NoMethodError - undefined method `tasks_path' for #<#:0x007ffcc5ed76e0> +Did you mean? asset_path: + actionpack (4.2.6) lib/action_dispatch/routing/polymorphic_routes.rb:220:in `polymorphic_method' + actionpack (4.2.6) lib/action_dispatch/routing/polymorphic_routes.rb:134:in `polymorphic_path' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:466:in `apply_form_for_options!' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:434:in `form_for' + app/views/tasks/add_task.html.erb:1:in `_app_views_tasks_add_task_html_erb__3259814232050186557_70361814577580' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f558a0c32489791d/variables" for ::1 at 2016-04-21 11:24:09 -0700 + + +Started POST "/__better_errors/f558a0c32489791d/eval" for ::1 at 2016-04-21 11:25:36 -0700 + + +Started POST "/__better_errors/f558a0c32489791d/variables" for ::1 at 2016-04-21 11:25:54 -0700 + + +Started POST "/__better_errors/f558a0c32489791d/variables" for ::1 at 2016-04-21 11:25:57 -0700 + + +Started POST "/__better_errors/f558a0c32489791d/variables" for ::1 at 2016-04-21 11:26:07 -0700 + + +Started POST "/__better_errors/f558a0c32489791d/variables" for ::1 at 2016-04-21 11:26:08 -0700 + + +Started POST "/__better_errors/f558a0c32489791d/variables" for ::1 at 2016-04-21 11:26:09 -0700 + + +Started POST "/__better_errors/f558a0c32489791d/variables" for ::1 at 2016-04-21 11:26:17 -0700 + + +Started POST "/__better_errors/f558a0c32489791d/variables" for ::1 at 2016-04-21 11:26:19 -0700 + + +Started POST "/__better_errors/f558a0c32489791d/variables" for ::1 at 2016-04-21 11:26:22 -0700 + + +Started POST "/__better_errors/f558a0c32489791d/variables" for ::1 at 2016-04-21 11:26:24 -0700 + + +Started POST "/__better_errors/f558a0c32489791d/variables" for ::1 at 2016-04-21 11:26:25 -0700 + + +Started POST "/__better_errors/f558a0c32489791d/variables" for ::1 at 2016-04-21 11:26:26 -0700 + + +Started POST "/__better_errors/f558a0c32489791d/variables" for ::1 at 2016-04-21 11:26:28 -0700 + + +Started POST "/__better_errors/f558a0c32489791d/variables" for ::1 at 2016-04-21 11:26:29 -0700 + + +Started POST "/__better_errors/f558a0c32489791d/variables" for ::1 at 2016-04-21 11:26:29 -0700 + + +Started GET "/add_task" for ::1 at 2016-04-21 11:26:40 -0700 +Processing by TasksController#add_task as HTML + Rendered tasks/add_task.html.erb within layouts/application (15.2ms) +Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `tasks_path' for #<#:0x007ffcc5ef48a8> +Did you mean? asset_path: + actionpack (4.2.6) lib/action_dispatch/routing/polymorphic_routes.rb:220:in `polymorphic_method' + actionpack (4.2.6) lib/action_dispatch/routing/polymorphic_routes.rb:134:in `polymorphic_path' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:466:in `apply_form_for_options!' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:434:in `form_for' + app/views/tasks/add_task.html.erb:1:in `_app_views_tasks_add_task_html_erb__3259814232050186557_70361814577580' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/41dab3bc232724d7/variables" for ::1 at 2016-04-21 11:26:40 -0700 + + +Started POST "/__better_errors/41dab3bc232724d7/eval" for ::1 at 2016-04-21 11:26:50 -0700 + + +Started POST "/__better_errors/41dab3bc232724d7/eval" for ::1 at 2016-04-21 11:26:52 -0700 + + +Started GET "/add_task" for ::1 at 2016-04-21 11:30:01 -0700 +Processing by TasksController#add_task as HTML + Rendered tasks/add_task.html.erb within layouts/application (16.2ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.3ms) + +NoMethodError - undefined method `tasks_path' for #<#:0x007ffcc29a5300> +Did you mean? asset_path: + actionpack (4.2.6) lib/action_dispatch/routing/polymorphic_routes.rb:220:in `polymorphic_method' + actionpack (4.2.6) lib/action_dispatch/routing/polymorphic_routes.rb:134:in `polymorphic_path' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:466:in `apply_form_for_options!' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:434:in `form_for' + app/views/tasks/add_task.html.erb:1:in `_app_views_tasks_add_task_html_erb__3259814232050186557_70361814577580' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e4fcbd0722fe4e6c/variables" for ::1 at 2016-04-21 11:30:01 -0700 + + +Started GET "/add_task" for ::1 at 2016-04-21 11:30:02 -0700 +Processing by TasksController#add_task as HTML + Rendered tasks/add_task.html.erb within layouts/application (16.5ms) +Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `tasks_path' for #<#:0x007ffcc462d310> +Did you mean? asset_path: + actionpack (4.2.6) lib/action_dispatch/routing/polymorphic_routes.rb:220:in `polymorphic_method' + actionpack (4.2.6) lib/action_dispatch/routing/polymorphic_routes.rb:134:in `polymorphic_path' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:466:in `apply_form_for_options!' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:434:in `form_for' + app/views/tasks/add_task.html.erb:1:in `_app_views_tasks_add_task_html_erb__3259814232050186557_70361814577580' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/6b9fc1c9a9f67117/variables" for ::1 at 2016-04-21 11:30:02 -0700 + + +Started GET "/" for ::1 at 2016-04-21 12:50:44 -0700 +Processing by HomeController#index as HTML + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (6.1ms) +Completed 200 OK in 33ms (Views: 29.7ms | ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-04-21 12:50:46 -0700 +Processing by HomeController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-21 12:50:47 -0700 +Processing by HomeController#single_task as HTML + Parameters: {"title"=>"Go to Brunch"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."title" = ? ORDER BY "tasks"."id" ASC LIMIT 1 [["title", "Go to Brunch"]] + Rendered home/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 20ms (Views: 18.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 12:50:48 -0700 +Processing by HomeController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered home/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 31ms (Views: 30.2ms | ActiveRecord: 0.2ms) + + +Started GET "/add_task" for ::1 at 2016-04-21 12:54:21 -0700 +Processing by TasksController#add_task as HTML + Rendered tasks/add_task.html.erb within layouts/application (23.2ms) +Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `tasks_path' for #<#:0x007ffcc5a4f988> +Did you mean? asset_path: + actionpack (4.2.6) lib/action_dispatch/routing/polymorphic_routes.rb:220:in `polymorphic_method' + actionpack (4.2.6) lib/action_dispatch/routing/polymorphic_routes.rb:134:in `polymorphic_path' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:466:in `apply_form_for_options!' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:434:in `form_for' + app/views/tasks/add_task.html.erb:1:in `_app_views_tasks_add_task_html_erb__3259814232050186557_70361812198240' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/add_task" for ::1 at 2016-04-21 12:54:21 -0700 +Processing by TasksController#add_task as HTML + Rendered tasks/add_task.html.erb within layouts/application (23.2ms) +Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `tasks_path' for #<#:0x007ffcc3bd9120> +Did you mean? asset_path: + actionpack (4.2.6) lib/action_dispatch/routing/polymorphic_routes.rb:220:in `polymorphic_method' + actionpack (4.2.6) lib/action_dispatch/routing/polymorphic_routes.rb:134:in `polymorphic_path' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:466:in `apply_form_for_options!' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:434:in `form_for' + app/views/tasks/add_task.html.erb:1:in `_app_views_tasks_add_task_html_erb__3259814232050186557_70361814577580' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f6d2454595e1535d/variables" for ::1 at 2016-04-21 12:54:21 -0700 + + +Started GET "/" for ::1 at 2016-04-21 12:58:33 -0700 + +ArgumentError - Invalid route name, already in use: 'task' +You may have defined two routes with the same name using the `:as` option, or you may be overriding a route already defined by a resource with the same naming. For the latter, you can restrict the routes created with `resources` as explained here: +http://guides.rubyonrails.org/routing.html#restricting-the-routes-created: + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:549:in `add_route' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:1562:in `add_route' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:1537:in `decomposed_match' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:1518:in `block in match' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:1508:in `match' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:690:in `map_method' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:651:in `get' + config/routes.rb:8:in `block in ' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:432:in `eval_block' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:410:in `draw' + config/routes.rb:1:in `' + activesupport (4.2.6) lib/active_support/dependencies.rb:268:in `block in load' + activesupport (4.2.6) lib/active_support/dependencies.rb:240:in `load_dependency' + activesupport (4.2.6) lib/active_support/dependencies.rb:268:in `load' + railties (4.2.6) lib/rails/application/routes_reloader.rb:40:in `block in load_paths' + railties (4.2.6) lib/rails/application/routes_reloader.rb:40:in `load_paths' + railties (4.2.6) lib/rails/application/routes_reloader.rb:16:in `reload!' + railties (4.2.6) lib/rails/application/routes_reloader.rb:26:in `block in updater' + activesupport (4.2.6) lib/active_support/file_update_checker.rb:75:in `execute' + railties (4.2.6) lib/rails/application/routes_reloader.rb:7:in `execute' + railties (4.2.6) lib/rails/application/finisher.rb:81:in `block (2 levels) in ' + activesupport (4.2.6) lib/active_support/callbacks.rb:446:in `block in make_lambda' + activesupport (4.2.6) lib/active_support/callbacks.rb:192:in `block in simple' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_prepare_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:83:in `prepare!' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:71:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b11fd1a29d182f78/variables" for ::1 at 2016-04-21 12:58:33 -0700 + + +Started GET "/" for ::1 at 2016-04-21 12:58:34 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___1452373482575026546_70361787304320' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/32b14a0a236a9f21/variables" for ::1 at 2016-04-21 12:58:34 -0700 + + +Started GET "/" for ::1 at 2016-04-21 12:58:37 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___1452373482575026546_70361787304320' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e1a683a32e2db516/variables" for ::1 at 2016-04-21 12:58:37 -0700 + + +Started GET "/" for ::1 at 2016-04-21 12:58:38 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___1452373482575026546_70361787304320' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/0c768034336d74dc/variables" for ::1 at 2016-04-21 12:58:38 -0700 + + +Started GET "/" for ::1 at 2016-04-21 12:59:24 -0700 + +ArgumentError - Invalid route name, already in use: 'task' +You may have defined two routes with the same name using the `:as` option, or you may be overriding a route already defined by a resource with the same naming. For the latter, you can restrict the routes created with `resources` as explained here: +http://guides.rubyonrails.org/routing.html#restricting-the-routes-created: + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:549:in `add_route' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:1562:in `add_route' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:1537:in `decomposed_match' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:1518:in `block in match' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:1508:in `match' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:690:in `map_method' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:651:in `get' + config/routes.rb:8:in `block in ' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:432:in `eval_block' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:410:in `draw' + config/routes.rb:1:in `' + activesupport (4.2.6) lib/active_support/dependencies.rb:268:in `block in load' + activesupport (4.2.6) lib/active_support/dependencies.rb:240:in `load_dependency' + activesupport (4.2.6) lib/active_support/dependencies.rb:268:in `load' + railties (4.2.6) lib/rails/application/routes_reloader.rb:40:in `block in load_paths' + railties (4.2.6) lib/rails/application/routes_reloader.rb:40:in `load_paths' + railties (4.2.6) lib/rails/application/routes_reloader.rb:16:in `reload!' + railties (4.2.6) lib/rails/application/routes_reloader.rb:26:in `block in updater' + activesupport (4.2.6) lib/active_support/file_update_checker.rb:75:in `execute' + railties (4.2.6) lib/rails/application/routes_reloader.rb:7:in `execute' + railties (4.2.6) lib/rails/application/finisher.rb:81:in `block (2 levels) in ' + activesupport (4.2.6) lib/active_support/callbacks.rb:446:in `block in make_lambda' + activesupport (4.2.6) lib/active_support/callbacks.rb:192:in `block in simple' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_prepare_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:83:in `prepare!' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:71:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/62ca58236b92bf00/variables" for ::1 at 2016-04-21 12:59:24 -0700 + + +Started GET "/" for ::1 at 2016-04-21 12:59:26 -0700 +Processing by TasksController#index as HTML + 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.1ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-21 12:59:28 -0700 + +ActionController::RoutingError (No route matches [GET] "/Go%20to%20Brunch"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (14.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (83.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (47.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (102.0ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-21 12:59:28 -0700 + +ActionController::RoutingError (No route matches [GET] "/Go%20to%20Brunch"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (61.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.5ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-21 12:59:30 -0700 + +ActionController::RoutingError (No route matches [GET] "/Go%20to%20Brunch"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (58.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.7ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-21 13:02:49 -0700 + +ArgumentError - Invalid route name, already in use: 'task' +You may have defined two routes with the same name using the `:as` option, or you may be overriding a route already defined by a resource with the same naming. For the latter, you can restrict the routes created with `resources` as explained here: +http://guides.rubyonrails.org/routing.html#restricting-the-routes-created: + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:549:in `add_route' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:1562:in `add_route' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:1537:in `decomposed_match' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:1518:in `block in match' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:1508:in `match' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:690:in `map_method' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:651:in `get' + config/routes.rb:8:in `block in ' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:432:in `eval_block' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:410:in `draw' + config/routes.rb:1:in `' + activesupport (4.2.6) lib/active_support/dependencies.rb:268:in `block in load' + activesupport (4.2.6) lib/active_support/dependencies.rb:240:in `load_dependency' + activesupport (4.2.6) lib/active_support/dependencies.rb:268:in `load' + railties (4.2.6) lib/rails/application/routes_reloader.rb:40:in `block in load_paths' + railties (4.2.6) lib/rails/application/routes_reloader.rb:40:in `load_paths' + railties (4.2.6) lib/rails/application/routes_reloader.rb:16:in `reload!' + railties (4.2.6) lib/rails/application/routes_reloader.rb:26:in `block in updater' + activesupport (4.2.6) lib/active_support/file_update_checker.rb:75:in `execute' + railties (4.2.6) lib/rails/application/routes_reloader.rb:7:in `execute' + railties (4.2.6) lib/rails/application/finisher.rb:81:in `block (2 levels) in ' + activesupport (4.2.6) lib/active_support/callbacks.rb:446:in `block in make_lambda' + activesupport (4.2.6) lib/active_support/callbacks.rb:192:in `block in simple' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_prepare_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:83:in `prepare!' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:71:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-21 13:02:49 -0700 + +ActionController::RoutingError (No route matches [GET] "/Go%20to%20Brunch"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (62.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.7ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-21 13:02:51 -0700 + +ActionController::RoutingError (No route matches [GET] "/Go%20to%20Brunch"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.3ms) + + +Started GET "/" for ::1 at 2016-04-21 13:02:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-21 13:02:58 -0700 + +ActionController::RoutingError (No route matches [GET] "/Go%20to%20Brunch"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (55.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (36.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (7.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.5ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-21 13:02:59 -0700 + +ActionController::RoutingError (No route matches [GET] "/Go%20to%20Brunch"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (56.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.8ms) + + +Started GET "/" for ::1 at 2016-04-21 13:03:49 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 19ms (Views: 17.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-e19c41b63331edaa4f1c38cc08a2bbe6bd76871ba06380b5a94e929f81f8ad2a.css?body=1" for ::1 at 2016-04-21 13:03:49 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 13:03:49 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 13:03:49 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:03:49 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:03:49 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 13:03:49 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 13:03:49 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 13:03:49 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 13:03:49 -0700 + + +Started GET "/tasks.3" for ::1 at 2016-04-21 13:03:52 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.3" for ::1 at 2016-04-21 13:03:54 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 25ms (Views: 24.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.3" for ::1 at 2016-04-21 13:03:54 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 23ms (Views: 22.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.3" for ::1 at 2016-04-21 13:03:54 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 25ms (Views: 24.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.3" for ::1 at 2016-04-21 13:03:55 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 24ms (Views: 23.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.3" for ::1 at 2016-04-21 13:03:55 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 24ms (Views: 23.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.3" for ::1 at 2016-04-21 13:03:55 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 25ms (Views: 24.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.3" for ::1 at 2016-04-21 13:03:55 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 25ms (Views: 24.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.4" for ::1 at 2016-04-21 13:03:56 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.4" for ::1 at 2016-04-21 13:03:56 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.4" for ::1 at 2016-04-21 13:03:56 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.5" for ::1 at 2016-04-21 13:03:56 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 25ms (Views: 23.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.5" for ::1 at 2016-04-21 13:03:56 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 26ms (Views: 25.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.5" for ::1 at 2016-04-21 13:03:57 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.5" for ::1 at 2016-04-21 13:04:44 -0700 +Processing by TasksController#index as + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected tCONSTANT, expecting ')' +...ut_buffer.append=( link_to "Add New Task", "/add" );@output_... +... ^ +/Users/annamason/C5/projects/TaskListRails/task-list/app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' +... link_to "Add New Task", "/add" );@output_buffer.safe_append... +... ^ +/Users/annamason/C5/projects/TaskListRails/task-list/app/views/tasks/index.html.erb:15: unterminated string meets end of file: + app/views/tasks/index.html.erb:15:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/65396d0ed4e1a13e/variables" for ::1 at 2016-04-21 13:04:44 -0700 + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + + +Started GET "/tasks.4" for ::1 at 2016-04-21 13:04:48 -0700 +Processing by TasksController#index as + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected tCONSTANT, expecting ')' +...ut_buffer.append=( link_to "Add New Task", "/add" );@output_... +... ^ +/Users/annamason/C5/projects/TaskListRails/task-list/app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' +... link_to "Add New Task", "/add" );@output_buffer.safe_append... +... ^ +/Users/annamason/C5/projects/TaskListRails/task-list/app/views/tasks/index.html.erb:15: unterminated string meets end of file: + app/views/tasks/index.html.erb:15:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ebd9e1613550aa12/variables" for ::1 at 2016-04-21 13:04:48 -0700 + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + + +Started GET "/tasks.4" for ::1 at 2016-04-21 13:04:49 -0700 +Processing by TasksController#index as + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected tCONSTANT, expecting ')' +...ut_buffer.append=( link_to "Add New Task", "/add" );@output_... +... ^ +/Users/annamason/C5/projects/TaskListRails/task-list/app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' +... link_to "Add New Task", "/add" );@output_buffer.safe_append... +... ^ +/Users/annamason/C5/projects/TaskListRails/task-list/app/views/tasks/index.html.erb:15: unterminated string meets end of file: + app/views/tasks/index.html.erb:15:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/8d5630dce4d45008/variables" for ::1 at 2016-04-21 13:04:49 -0700 + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + + +Started GET "/" for ::1 at 2016-04-21 13:08:18 -0700 + +ArgumentError - Invalid route name, already in use: 'task' +You may have defined two routes with the same name using the `:as` option, or you may be overriding a route already defined by a resource with the same naming. For the latter, you can restrict the routes created with `resources` as explained here: +http://guides.rubyonrails.org/routing.html#restricting-the-routes-created: + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:549:in `add_route' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:1562:in `add_route' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:1537:in `decomposed_match' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:1518:in `block in match' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:1508:in `match' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:690:in `map_method' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:651:in `get' + config/routes.rb:8:in `block in ' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:432:in `eval_block' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:410:in `draw' + config/routes.rb:1:in `' + activesupport (4.2.6) lib/active_support/dependencies.rb:268:in `block in load' + activesupport (4.2.6) lib/active_support/dependencies.rb:240:in `load_dependency' + activesupport (4.2.6) lib/active_support/dependencies.rb:268:in `load' + railties (4.2.6) lib/rails/application/routes_reloader.rb:40:in `block in load_paths' + railties (4.2.6) lib/rails/application/routes_reloader.rb:40:in `load_paths' + railties (4.2.6) lib/rails/application/routes_reloader.rb:16:in `reload!' + railties (4.2.6) lib/rails/application/routes_reloader.rb:26:in `block in updater' + activesupport (4.2.6) lib/active_support/file_update_checker.rb:75:in `execute' + railties (4.2.6) lib/rails/application/routes_reloader.rb:7:in `execute' + railties (4.2.6) lib/rails/application/finisher.rb:81:in `block (2 levels) in ' + activesupport (4.2.6) lib/active_support/callbacks.rb:446:in `block in make_lambda' + activesupport (4.2.6) lib/active_support/callbacks.rb:192:in `block in simple' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_prepare_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:83:in `prepare!' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:71:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/9897f34e1c673862/variables" for ::1 at 2016-04-21 13:08:18 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:08:20 -0700 + +SyntaxError - syntax error, unexpected keyword_end, expecting end-of-input: + app/controllers/tasks_controller.rb:35:in `' + activesupport (4.2.6) lib/active_support/dependencies.rb:457:in `block in load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:647:in `new_constants_in' + activesupport (4.2.6) lib/active_support/dependencies.rb:456:in `load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:354:in `require_or_load' + activesupport (4.2.6) lib/active_support/dependencies.rb:494:in `load_missing_constant' + activesupport (4.2.6) lib/active_support/dependencies.rb:184:in `const_missing' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + activesupport (4.2.6) lib/active_support/dependencies.rb:566:in `get' + activesupport (4.2.6) lib/active_support/dependencies.rb:597:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c12263d83be714e8/variables" for ::1 at 2016-04-21 13:08:20 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:08:21 -0700 + +SyntaxError - syntax error, unexpected keyword_end, expecting end-of-input: + app/controllers/tasks_controller.rb:35:in `' + activesupport (4.2.6) lib/active_support/dependencies.rb:457:in `block in load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:647:in `new_constants_in' + activesupport (4.2.6) lib/active_support/dependencies.rb:456:in `load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:354:in `require_or_load' + activesupport (4.2.6) lib/active_support/dependencies.rb:494:in `load_missing_constant' + activesupport (4.2.6) lib/active_support/dependencies.rb:184:in `const_missing' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + activesupport (4.2.6) lib/active_support/dependencies.rb:566:in `get' + activesupport (4.2.6) lib/active_support/dependencies.rb:597:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/0a7b24a8d58e7fa5/variables" for ::1 at 2016-04-21 13:08:21 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:08:32 -0700 + +ArgumentError - Invalid route name, already in use: 'task' +You may have defined two routes with the same name using the `:as` option, or you may be overriding a route already defined by a resource with the same naming. For the latter, you can restrict the routes created with `resources` as explained here: +http://guides.rubyonrails.org/routing.html#restricting-the-routes-created: + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:549:in `add_route' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:1562:in `add_route' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:1537:in `decomposed_match' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:1518:in `block in match' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:1508:in `match' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:690:in `map_method' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:651:in `get' + config/routes.rb:8:in `block in ' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:432:in `eval_block' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:410:in `draw' + config/routes.rb:1:in `' + activesupport (4.2.6) lib/active_support/dependencies.rb:268:in `block in load' + activesupport (4.2.6) lib/active_support/dependencies.rb:240:in `load_dependency' + activesupport (4.2.6) lib/active_support/dependencies.rb:268:in `load' + railties (4.2.6) lib/rails/application/routes_reloader.rb:40:in `block in load_paths' + railties (4.2.6) lib/rails/application/routes_reloader.rb:40:in `load_paths' + railties (4.2.6) lib/rails/application/routes_reloader.rb:16:in `reload!' + railties (4.2.6) lib/rails/application/routes_reloader.rb:26:in `block in updater' + activesupport (4.2.6) lib/active_support/file_update_checker.rb:75:in `execute' + railties (4.2.6) lib/rails/application/routes_reloader.rb:7:in `execute' + railties (4.2.6) lib/rails/application/finisher.rb:81:in `block (2 levels) in ' + activesupport (4.2.6) lib/active_support/callbacks.rb:446:in `block in make_lambda' + activesupport (4.2.6) lib/active_support/callbacks.rb:192:in `block in simple' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_prepare_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:83:in `prepare!' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:71:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e4cbad695a2013c6/variables" for ::1 at 2016-04-21 13:08:32 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:08:34 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.0ms) +Completed 200 OK in 24ms (Views: 21.1ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks.3" for ::1 at 2016-04-21 13:08:37 -0700 +Processing by TasksController#index as + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 31ms (Views: 30.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.3" for ::1 at 2016-04-21 13:08:38 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 22ms (Views: 21.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.3" for ::1 at 2016-04-21 13:08:38 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.3" for ::1 at 2016-04-21 13:08:38 -0700 +Processing by TasksController#index as + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 23ms (Views: 22.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.3" for ::1 at 2016-04-21 13:08:38 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 24ms (Views: 23.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.4" for ::1 at 2016-04-21 13:08:39 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 24ms (Views: 23.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.4" for ::1 at 2016-04-21 13:08:39 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 24ms (Views: 22.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.4" for ::1 at 2016-04-21 13:08:39 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 23ms (Views: 22.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.5" for ::1 at 2016-04-21 13:08:40 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 25ms (Views: 24.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.5" for ::1 at 2016-04-21 13:08:40 -0700 +Processing by TasksController#index as + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 29ms (Views: 28.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.6" for ::1 at 2016-04-21 13:08:40 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 30ms (Views: 29.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.6" for ::1 at 2016-04-21 13:08:40 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 25ms (Views: 23.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.7" for ::1 at 2016-04-21 13:08:42 -0700 +Processing by TasksController#index as + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 24ms (Views: 22.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.7" for ::1 at 2016-04-21 13:08:42 -0700 +Processing by TasksController#index as + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.8" for ::1 at 2016-04-21 13:08:43 -0700 +Processing by TasksController#index as + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.8" for ::1 at 2016-04-21 13:08:43 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 23ms (Views: 22.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.8" for ::1 at 2016-04-21 13:08:43 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 23ms (Views: 22.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.8" for ::1 at 2016-04-21 13:08:43 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 24ms (Views: 23.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.8" for ::1 at 2016-04-21 13:08:43 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 23ms (Views: 22.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.4" for ::1 at 2016-04-21 13:08:44 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 26ms (Views: 25.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.3" for ::1 at 2016-04-21 13:08:45 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 30ms (Views: 29.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.2" for ::1 at 2016-04-21 13:08:46 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 24ms (Views: 22.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.3" for ::1 at 2016-04-21 13:08:47 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.4" for ::1 at 2016-04-21 13:08:48 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 26ms (Views: 25.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.2" for ::1 at 2016-04-21 13:08:49 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 29ms (Views: 28.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.3" for ::1 at 2016-04-21 13:08:50 -0700 +Processing by TasksController#index as + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 24ms (Views: 23.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.4" for ::1 at 2016-04-21 13:08:51 -0700 +Processing by TasksController#index as + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 25ms (Views: 24.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.5" for ::1 at 2016-04-21 13:08:52 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 25ms (Views: 24.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.6" for ::1 at 2016-04-21 13:08:52 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.7" for ::1 at 2016-04-21 13:08:53 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.8" for ::1 at 2016-04-21 13:08:54 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 36ms (Views: 35.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.9" for ::1 at 2016-04-21 13:08:54 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.10" for ::1 at 2016-04-21 13:08:55 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 28ms (Views: 27.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.11" for ::1 at 2016-04-21 13:08:55 -0700 +Processing by TasksController#index as + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 25ms (Views: 23.9ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks.2" for ::1 at 2016-04-21 13:08:58 -0700 +Processing by TasksController#index as + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 31ms (Views: 30.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.2" for ::1 at 2016-04-21 13:08:59 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 28ms (Views: 27.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.2" for ::1 at 2016-04-21 13:08:59 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 26ms (Views: 25.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 13:14:07 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 314ms (Views: 303.0ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/home.self-e19c41b63331edaa4f1c38cc08a2bbe6bd76871ba06380b5a94e929f81f8ad2a.css?body=1" for ::1 at 2016-04-21 13:14:08 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 13:14:08 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 13:14:08 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 13:14:08 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:14:08 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 13:14:08 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 13:14:08 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:14:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 13:14:08 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:14:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.3" for ::1 at 2016-04-21 13:14:14 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 23ms (Views: 22.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.4" for ::1 at 2016-04-21 13:14:16 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 23ms (Views: 22.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2016-04-21 13:14:19 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/banana" for ::1 at 2016-04-21 13:14:21 -0700 + +ActionController::RoutingError (No route matches [GET] "/banana"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (80.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (113.3ms) + + +Started GET "/banana" for ::1 at 2016-04-21 13:14:48 -0700 + +ActionController::RoutingError (No route matches [GET] "/banana"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (69.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (48.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (102.5ms) + + +Started GET "/" for ::1 at 2016-04-21 13:14:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (28.8ms) +Completed 500 Internal Server Error in 35ms (ActiveRecord: 0.4ms) + +NoMethodError - undefined method `task_path' for #<#:0x007fc4924cabe0> +Did you mean? tasks_path: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___2541757312969064253_70241120719220' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___2541757312969064253_70241120719220' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/9f49177795818eba/variables" for ::1 at 2016-04-21 13:14:51 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:14:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (19.2ms) +Completed 500 Internal Server Error in 23ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `task_path' for #<#:0x007fc497510dc0> +Did you mean? tasks_path: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___2541757312969064253_70241120719220' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___2541757312969064253_70241120719220' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c226abea81f71802/variables" for ::1 at 2016-04-21 13:14:59 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:15:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (19.6ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `task_path' for #<#:0x007fc49521f078> +Did you mean? tasks_path: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___2541757312969064253_70241120719220' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___2541757312969064253_70241120719220' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b8fe1386612fa85d/variables" for ::1 at 2016-04-21 13:15:00 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:15:08 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (17.3ms) +Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `task_path' for #<#:0x007fc494db2da0> +Did you mean? tasks_path: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___2541757312969064253_70241120719220' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___2541757312969064253_70241120719220' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/5418f283ce091831/variables" for ::1 at 2016-04-21 13:15:08 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:15:18 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 28ms (Views: 26.0ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-21 13:15:19 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 13:15:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (23.4ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `id' for #<#:0x007fc492ab13b0>: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___2541757312969064253_70241165336480' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___2541757312969064253_70241165336480' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/71e0797fc7cdb7bb/variables" for ::1 at 2016-04-21 13:15:46 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:15:50 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (27.7ms) +Completed 500 Internal Server Error in 32ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `id' for #<#:0x007fc494ec0008>: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___2541757312969064253_70241165336480' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___2541757312969064253_70241165336480' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/2f5acefed7f1148e/variables" for ::1 at 2016-04-21 13:15:50 -0700 + + +Started POST "/__better_errors/2f5acefed7f1148e/eval" for ::1 at 2016-04-21 13:15:52 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:15:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 20ms (Views: 19.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2016-04-21 13:16:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 22ms (Views: 21.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 13:17:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 33ms (Views: 30.7ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks.3" for ::1 at 2016-04-21 13:17:48 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 23ms (Views: 22.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.4" for ::1 at 2016-04-21 13:17:50 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.5" for ::1 at 2016-04-21 13:17:51 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 25ms (Views: 24.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.6" for ::1 at 2016-04-21 13:17:52 -0700 +Processing by TasksController#index as + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 24ms (Views: 22.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.7" for ::1 at 2016-04-21 13:17:53 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.8" for ::1 at 2016-04-21 13:17:54 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 25ms (Views: 24.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.9" for ::1 at 2016-04-21 13:17:55 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 24ms (Views: 23.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks.9" for ::1 at 2016-04-21 13:18:56 -0700 +Processing by TasksController#index as + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-e19c41b63331edaa4f1c38cc08a2bbe6bd76871ba06380b5a94e929f81f8ad2a.css?body=1" for ::1 at 2016-04-21 13:18:56 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 13:18:56 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 13:18:56 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 13:18:56 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 13:18:56 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:18:56 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 13:18:56 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:18:56 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 13:18:56 -0700 + + +Started GET "/tasks" for ::1 at 2016-04-21 13:18:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 13:18:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 13:19:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 13:19:07 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (24.2ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `album' for #<#:0x007fc49755bf50>: + app/views/tasks/index.html.erb:17:in `_app_views_tasks_index_html_erb___2541757312969064253_70241164645640' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/6c3b53ea6dafbd62/variables" for ::1 at 2016-04-21 13:19:07 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:19:42 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (24.9ms) +Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `album' for #<#:0x007fc4924d2570>: + app/views/tasks/index.html.erb:17:in `_app_views_tasks_index_html_erb___2541757312969064253_70241122420880' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c27e87521e29d762/variables" for ::1 at 2016-04-21 13:19:42 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:19:43 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (28.4ms) +Completed 500 Internal Server Error in 32ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `album' for #<#:0x007fc4971d36f8>: + app/views/tasks/index.html.erb:17:in `_app_views_tasks_index_html_erb___2541757312969064253_70241122420880' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/223a8e4dccc6178b/variables" for ::1 at 2016-04-21 13:19:43 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:19:44 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (35.1ms) +Completed 500 Internal Server Error in 39ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `album' for #<#:0x007fc492916be0>: + app/views/tasks/index.html.erb:17:in `_app_views_tasks_index_html_erb___2541757312969064253_70241122420880' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/849bcf382618d579/variables" for ::1 at 2016-04-21 13:19:44 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:19:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-e19c41b63331edaa4f1c38cc08a2bbe6bd76871ba06380b5a94e929f81f8ad2a.css?body=1" for ::1 at 2016-04-21 13:19:48 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 13:19:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 13:19:48 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:19:48 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 13:19:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 13:19:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 13:19:48 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:19:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 13:19:48 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:20:31 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-e19c41b63331edaa4f1c38cc08a2bbe6bd76871ba06380b5a94e929f81f8ad2a.css?body=1" for ::1 at 2016-04-21 13:20:31 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 13:20:31 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 13:20:31 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 13:20:31 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:20:31 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:20:31 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 13:20:31 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 13:20:31 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 13:20:31 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:20:44 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (24.7ms) +Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `bananas_path' for #<#:0x007fc4972c0c00> +Did you mean? banana_path: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___2541757312969064253_70241163197220' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___2541757312969064253_70241163197220' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/d8c956fa05dae8d0/variables" for ::1 at 2016-04-21 13:20:44 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:20:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 22ms (Views: 21.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 13:20:51 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 13:20:51 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 13:20:51 -0700 + + +Started GET "/assets/home.self-e19c41b63331edaa4f1c38cc08a2bbe6bd76871ba06380b5a94e929f81f8ad2a.css?body=1" for ::1 at 2016-04-21 13:20:51 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 13:20:51 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:20:51 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 13:20:51 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:20:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 13:20:51 -0700 + + +Started GET "/tasks/7" for ::1 at 2016-04-21 13:20:56 -0700 +Processing by TasksController#single_task as HTML + Parameters: {"id"=>"7"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 7]] + Rendered tasks/single_task.html.erb within layouts/application (0.4ms) +Completed 200 OK in 24ms (Views: 14.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/3" for ::1 at 2016-04-21 13:21:18 -0700 +Processing by TasksController#single_task as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/single_task.html.erb within layouts/application (0.2ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6" for ::1 at 2016-04-21 13:21:20 -0700 +Processing by TasksController#single_task as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 13:21:37 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-e19c41b63331edaa4f1c38cc08a2bbe6bd76871ba06380b5a94e929f81f8ad2a.css?body=1" for ::1 at 2016-04-21 13:21:37 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 13:21:37 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 13:21:37 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 13:21:37 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 13:21:37 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 13:21:37 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:21:37 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:21:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 13:21:37 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:21:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (21.4ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `none_path' for #<#:0x007fc4973127f8>: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___2541757312969064253_70241163446360' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___2541757312969064253_70241163446360' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/020b7c9ae243e32e/variables" for ::1 at 2016-04-21 13:21:48 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:21:54 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (18.7ms) +Completed 500 Internal Server Error in 23ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `cat_path' for #<#:0x007fc49172e838> +Did you mean? asset_path: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___2541757312969064253_70241115251700' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___2541757312969064253_70241115251700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/052450b5be2a5d26/variables" for ::1 at 2016-04-21 13:21:54 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:21:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (30.8ms) +Completed 500 Internal Server Error in 37ms (ActiveRecord: 0.3ms) + +NoMethodError - undefined method `cat_path' for #<#:0x007fc49740a7a0> +Did you mean? asset_path: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___2541757312969064253_70241115251700' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___2541757312969064253_70241115251700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f06ed9c1cc23a8f6/variables" for ::1 at 2016-04-21 13:21:55 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:21:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (24.9ms) +Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `cat_path' for #<#:0x007fc49252b288> +Did you mean? asset_path: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___2541757312969064253_70241115251700' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___2541757312969064253_70241115251700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c81cfa340a620c21/variables" for ::1 at 2016-04-21 13:21:56 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:21:57 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (25.0ms) +Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.4ms) + +NoMethodError - undefined method `cat_path' for #<#:0x007fc49290eda0> +Did you mean? asset_path: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___2541757312969064253_70241115251700' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___2541757312969064253_70241115251700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a39cc368d2910096/variables" for ::1 at 2016-04-21 13:21:57 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:21:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (34.8ms) +Completed 500 Internal Server Error in 41ms (ActiveRecord: 0.3ms) + +NoMethodError - undefined method `cat_path' for #<#:0x007fc490c56640> +Did you mean? asset_path: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___2541757312969064253_70241115251700' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___2541757312969064253_70241115251700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a0b4f5d5c8590b59/variables" for ::1 at 2016-04-21 13:21:58 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:21:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (35.7ms) +Completed 500 Internal Server Error in 41ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `cat_path' for #<#:0x007fc492530b20> +Did you mean? asset_path: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___2541757312969064253_70241115251700' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___2541757312969064253_70241115251700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/85a5b7b77010e935/variables" for ::1 at 2016-04-21 13:21:58 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:22:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 30ms (Views: 29.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-e19c41b63331edaa4f1c38cc08a2bbe6bd76871ba06380b5a94e929f81f8ad2a.css?body=1" for ::1 at 2016-04-21 13:22:05 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 13:22:05 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 13:22:05 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 13:22:05 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 13:22:05 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 13:22:05 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:22:05 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:22:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 13:22:05 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:22:27 -0700 + +ArgumentError - Invalid route name, already in use: 'task' +You may have defined two routes with the same name using the `:as` option, or you may be overriding a route already defined by a resource with the same naming. For the latter, you can restrict the routes created with `resources` as explained here: +http://guides.rubyonrails.org/routing.html#restricting-the-routes-created: + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:549:in `add_route' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:1562:in `add_route' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:1537:in `decomposed_match' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:1518:in `block in match' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:1508:in `match' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:690:in `map_method' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:651:in `get' + config/routes.rb:8:in `block in ' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:432:in `eval_block' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:410:in `draw' + config/routes.rb:1:in `' + activesupport (4.2.6) lib/active_support/dependencies.rb:268:in `block in load' + activesupport (4.2.6) lib/active_support/dependencies.rb:240:in `load_dependency' + activesupport (4.2.6) lib/active_support/dependencies.rb:268:in `load' + railties (4.2.6) lib/rails/application/routes_reloader.rb:40:in `block in load_paths' + railties (4.2.6) lib/rails/application/routes_reloader.rb:40:in `load_paths' + railties (4.2.6) lib/rails/application/routes_reloader.rb:16:in `reload!' + railties (4.2.6) lib/rails/application/routes_reloader.rb:26:in `block in updater' + activesupport (4.2.6) lib/active_support/file_update_checker.rb:75:in `execute' + railties (4.2.6) lib/rails/application/routes_reloader.rb:7:in `execute' + railties (4.2.6) lib/rails/application/finisher.rb:81:in `block (2 levels) in ' + activesupport (4.2.6) lib/active_support/callbacks.rb:446:in `block in make_lambda' + activesupport (4.2.6) lib/active_support/callbacks.rb:192:in `block in simple' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_prepare_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:83:in `prepare!' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:71:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f4bcb7c414dd84f0/variables" for ::1 at 2016-04-21 13:22:27 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:22:57 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (23.5ms) +Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.4ms) + +NoMethodError - undefined method `banana_path' for #<#:0x007fc492a11748>: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___2541757312969064253_70241115355880' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___2541757312969064253_70241115355880' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/521cd5fd30fa7388/variables" for ::1 at 2016-04-21 13:22:57 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:22:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (27.0ms) +Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `banana_path' for #<#:0x007fc492a4c848>: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___2541757312969064253_70241115355880' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___2541757312969064253_70241115355880' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f0f10f04a9adc242/variables" for ::1 at 2016-04-21 13:22:58 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:22:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (27.7ms) +Completed 500 Internal Server Error in 33ms (ActiveRecord: 0.3ms) + +NoMethodError - undefined method `banana_path' for #<#:0x007fc4974c3c78>: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___2541757312969064253_70241115355880' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___2541757312969064253_70241115355880' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/9c16d3757fbff0f8/variables" for ::1 at 2016-04-21 13:22:58 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:23:08 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-e19c41b63331edaa4f1c38cc08a2bbe6bd76871ba06380b5a94e929f81f8ad2a.css?body=1" for ::1 at 2016-04-21 13:23:08 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 13:23:08 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 13:23:08 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:23:08 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 13:23:08 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 13:23:08 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 13:23:08 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:23:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 13:23:08 -0700 + + +Started GET "/tasks/3" for ::1 at 2016-04-21 13:23:09 -0700 +Processing by TasksController#single_task as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 13:23:11 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 22ms (Views: 20.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/4" for ::1 at 2016-04-21 13:23:11 -0700 +Processing by TasksController#single_task as HTML + Parameters: {"id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasks/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 13:23:12 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2016-04-21 13:23:15 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (69.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (47.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (103.5ms) + + +Started GET "/tasks" for ::1 at 2016-04-21 13:23:38 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (69.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (49.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (105.1ms) + + +Started GET "/tasks" for ::1 at 2016-04-21 13:23:39 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (70.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (102.2ms) + + +Started GET "/" for ::1 at 2016-04-21 13:23:40 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 22ms (Views: 19.7ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/3" for ::1 at 2016-04-21 13:23:42 -0700 +Processing by TasksController#single_task as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 17ms (Views: 15.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/3" for ::1 at 2016-04-21 13:27:15 -0700 +Processing by TasksController#single_task as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/single_task.html.erb within layouts/application (0.4ms) +Completed 200 OK in 29ms (Views: 24.3ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/home.self-e19c41b63331edaa4f1c38cc08a2bbe6bd76871ba06380b5a94e929f81f8ad2a.css?body=1" for ::1 at 2016-04-21 13:27:15 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 13:27:15 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 13:27:15 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 13:27:15 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 13:27:15 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 13:27:15 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:27:15 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:27:15 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 13:27:15 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:27:16 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2016-04-21 13:27:18 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2016-04-21 13:27:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/home.self-e19c41b63331edaa4f1c38cc08a2bbe6bd76871ba06380b5a94e929f81f8ad2a.css?body=1" for ::1 at 2016-04-21 13:27:53 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 13:27:53 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 13:27:53 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 13:27:53 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 13:27:53 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 13:27:53 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:27:53 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:27:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 13:27:53 -0700 + + +Started GET "/tasks/3" for ::1 at 2016-04-21 13:27:54 -0700 +Processing by TasksController#single_task as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 13:27:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2016-04-21 13:28:00 -0700 +Processing by TasksController#single_task as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 13:28:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2016-04-21 13:28:02 -0700 +Processing by TasksController#single_task as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 13:28:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.1ms) +Completed 200 OK in 22ms (Views: 21.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2016-04-21 13:28:04 -0700 +Processing by TasksController#single_task as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2016-04-21 13:31:22 -0700 +Processing by TasksController#single_task as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-e19c41b63331edaa4f1c38cc08a2bbe6bd76871ba06380b5a94e929f81f8ad2a.css?body=1" for ::1 at 2016-04-21 13:31:22 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 13:31:22 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 13:31:22 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 13:31:22 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 13:31:22 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 13:31:22 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:31:22 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:31:22 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 13:31:22 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:34:24 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 31ms (Views: 29.1ms | ActiveRecord: 0.5ms) + + +Started GET "/add" for ::1 at 2016-04-21 13:34:26 -0700 + +ActionController::RoutingError (No route matches [GET] "/add"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (82.2ms) + + +Started GET "/add" for ::1 at 2016-04-21 13:34:26 -0700 + +ActionController::RoutingError (No route matches [GET] "/add"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (54.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.3ms) + + +Started GET "/add" for ::1 at 2016-04-21 13:34:32 -0700 + +ActionController::RoutingError (No route matches [GET] "/add"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (55.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (81.7ms) + + +Started GET "/add" for ::1 at 2016-04-21 13:34:32 -0700 + +ActionController::RoutingError (No route matches [GET] "/add"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.8ms) + + +Started GET "/add" for ::1 at 2016-04-21 13:35:19 -0700 + +ActionController::RoutingError (No route matches [GET] "/add"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (55.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.2ms) + + +Started GET "/" for ::1 at 2016-04-21 13:35:20 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 500 Internal Server Error in 50ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `tasks_new_path' for #<#:0x007fc4973ab570> +Did you mean? tasks_path + task_path + tasks_add_path: + app/views/layouts/application.html.erb:20:in `_app_views_layouts_application_html_erb__1461478569525660580_70241163755800' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f8ba19f563ba5108/variables" for ::1 at 2016-04-21 13:35:21 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:35:22 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 500 Internal Server Error in 50ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `tasks_new_path' for #<#:0x007fc495435290> +Did you mean? tasks_path + task_path + tasks_add_path: + app/views/layouts/application.html.erb:20:in `_app_views_layouts_application_html_erb__1461478569525660580_70241163755800' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c024126e01669066/variables" for ::1 at 2016-04-21 13:35:22 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:35:49 -0700 +Processing by TasksController#index as HTML + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 500 Internal Server Error in 53ms (ActiveRecord: 0.5ms) + +NameError - undefined local variable or method `albums_new_path' for #<#:0x007fc4914ac8a8>: + app/views/layouts/application.html.erb:20:in `_app_views_layouts_application_html_erb__1461478569525660580_70241120473080' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/6a6d88978ff06208/variables" for ::1 at 2016-04-21 13:35:49 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:36:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 500 Internal Server Error in 83ms (ActiveRecord: 0.3ms) + +NameError - undefined local variable or method `albums_new_path' for #<#:0x007fc492441d68>: + app/views/layouts/application.html.erb:20:in `_app_views_layouts_application_html_erb__1461478569525660580_70241120473080' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a6137da931b7d649/variables" for ::1 at 2016-04-21 13:36:06 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:36:12 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 500 Internal Server Error in 47ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `albums_new_path' for #<#:0x007fc4951fe2d8>: + app/views/layouts/application.html.erb:20:in `_app_views_layouts_application_html_erb__1461478569525660580_70241120473080' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/60dbfd9fae087fb0/variables" for ::1 at 2016-04-21 13:36:12 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:36:32 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 500 Internal Server Error in 70ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `tasks_new_path' for #<#:0x007fc49541f6e8> +Did you mean? tasks_path + task_path + tasks_add_path: + app/views/layouts/application.html.erb:20:in `_app_views_layouts_application_html_erb__1461478569525660580_70241147216280' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a7efa827b5af37b1/variables" for ::1 at 2016-04-21 13:36:33 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:37:27 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 13:37:29 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 29ms (Views: 28.1ms | ActiveRecord: 0.1ms) + + +Started GET "/add" for ::1 at 2016-04-21 13:37:31 -0700 + +ActionController::RoutingError (No route matches [GET] "/add"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (55.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.2ms) + + +Started GET "/add" for ::1 at 2016-04-21 13:37:31 -0700 + +ActionController::RoutingError (No route matches [GET] "/add"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (64.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (46.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (101.3ms) + + +Started GET "/add" for ::1 at 2016-04-21 13:39:14 -0700 + +ActionController::RoutingError (No route matches [GET] "/add"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (76.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.8ms) + + +Started GET "/" for ::1 at 2016-04-21 13:39:17 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 13:39:21 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (7.5ms) +Completed 200 OK in 23ms (Views: 22.9ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 13:39:34 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"jjsJncueZbGDL0iyzNadyDDPVzXuTcobzerH/pzQpq6YJ3QrpKt2T86xf+2DmYF+XPU0GTdQF1FpkNS686V1ag==", "task"=>{"title"=>"Add a new task", "description"=>"Test if it works"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.6ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Add a new task"], ["description", "Test if it works"], ["created_at", "2016-04-21 20:39:34.045028"], ["updated_at", "2016-04-21 20:39:34.045028"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks/12 +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks/12" for ::1 at 2016-04-21 13:39:34 -0700 +Processing by TasksController#single_task as HTML + Parameters: {"id"=>"12"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 21ms (Views: 18.7ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-21 13:39:37 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/12" for ::1 at 2016-04-21 13:39:48 -0700 +Processing by TasksController#single_task as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/12" for ::1 at 2016-04-21 13:40:08 -0700 +Processing by TasksController#single_task as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/single_task.html.erb within layouts/application (0.4ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-e19c41b63331edaa4f1c38cc08a2bbe6bd76871ba06380b5a94e929f81f8ad2a.css?body=1" for ::1 at 2016-04-21 13:40:08 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 13:40:08 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 13:40:08 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 13:40:08 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 13:40:08 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 13:40:08 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:40:08 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:40:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 13:40:08 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 13:40:08 -0700 + + +Started GET "/tasks/12" for ::1 at 2016-04-21 13:40:16 -0700 +Processing by TasksController#single_task as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-e19c41b63331edaa4f1c38cc08a2bbe6bd76871ba06380b5a94e929f81f8ad2a.css?body=1" for ::1 at 2016-04-21 13:40:16 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 13:40:16 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 13:40:16 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 13:40:16 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 13:40:16 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 13:40:16 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:40:16 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:40:16 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 13:40:16 -0700 + + +Started GET "/tasks/12" for ::1 at 2016-04-21 13:40:17 -0700 +Processing by TasksController#single_task as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/single_task.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-e19c41b63331edaa4f1c38cc08a2bbe6bd76871ba06380b5a94e929f81f8ad2a.css?body=1" for ::1 at 2016-04-21 13:40:17 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 13:40:17 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 13:40:17 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 13:40:17 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 13:40:17 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 13:40:17 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:40:17 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:40:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 13:40:17 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:40:18 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 13:40:27 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-e19c41b63331edaa4f1c38cc08a2bbe6bd76871ba06380b5a94e929f81f8ad2a.css?body=1" for ::1 at 2016-04-21 13:40:27 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 13:40:27 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 13:40:27 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 13:40:27 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 13:40:28 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 13:40:28 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:40:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 13:40:28 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:40:28 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:40:43 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-e19c41b63331edaa4f1c38cc08a2bbe6bd76871ba06380b5a94e929f81f8ad2a.css?body=1" for ::1 at 2016-04-21 13:40:43 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 13:40:43 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 13:40:43 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 13:40:43 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 13:40:43 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 13:40:43 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:40:43 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:40:43 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 13:40:43 -0700 + + +Started GET "/tasks/12" for ::1 at 2016-04-21 13:40:52 -0700 +Processing by TasksController#single_task as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/single_task.html.erb within layouts/application (0.4ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 13:40:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 13:40:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 22ms (Views: 21.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 13:44:10 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/home.self-e19c41b63331edaa4f1c38cc08a2bbe6bd76871ba06380b5a94e929f81f8ad2a.css?body=1" for ::1 at 2016-04-21 13:44:10 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 13:44:10 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 13:44:10 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:44:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 13:44:10 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 13:44:10 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:44:10 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 13:44:10 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 13:44:10 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:44:12 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 13:44:14 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2016-04-21 13:49:40 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 22ms (Views: 20.2ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-21 13:49:40 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 13:49:42 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.5ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 13:49:51 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"VY68N25MLsD4XqQVX+QlJ77IjwHyv8nZY+j2fhVT1B5DksGBAXk9PrXAk0oQqzmR0vLsLSuiFJPHkuU6eiYH2g==", "task"=>{"title"=>"Redirect to home", "description"=>"does it do it?"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Redirect to home"], ["description", "does it do it?"], ["created_at", "2016-04-21 20:49:51.179707"], ["updated_at", "2016-04-21 20:49:51.179707"]] +  (0.9ms) commit transaction +Redirected to +Completed 500 Internal Server Error in 14ms (ActiveRecord: 1.3ms) + +NoMethodError - undefined method `index_url' for # +Did you mean? index: + actionpack (4.2.6) lib/action_dispatch/routing/polymorphic_routes.rb:239:in `handle_string_call' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:161:in `url_for' + actionpack (4.2.6) lib/action_controller/metal/redirecting.rb:95:in `_compute_redirect_to_location' + turbolinks (2.5.3) lib/turbolinks/xhr_headers.rb:21:in `_compute_redirect_to_location' + actionpack (4.2.6) lib/action_controller/metal/redirecting.rb:75:in `redirect_to' + actionpack (4.2.6) lib/action_controller/metal/flash.rb:57:in `redirect_to' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:64:in `block in redirect_to' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:63:in `redirect_to' + app/controllers/tasks_controller.rb:22:in `create' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4512fba8e8900824/variables" for ::1 at 2016-04-21 13:49:51 -0700 + + +Started POST "/__better_errors/4512fba8e8900824/eval" for ::1 at 2016-04-21 13:50:15 -0700 + + +Started POST "/__better_errors/4512fba8e8900824/eval" for ::1 at 2016-04-21 13:50:17 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 13:50:30 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.9ms) +Completed 200 OK in 26ms (Views: 19.2ms | ActiveRecord: 0.7ms) + + +Started GET "/" for ::1 at 2016-04-21 13:50:32 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 13:50:34 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.1ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 13:50:41 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"7v6T4o56YJF3d27oK/ry+0Shrgx6igs5vuu2pS4Vs4j44u5U4U9zbzrpWbdkte5NKJvNIKOX1nMakaXhQWBgTA==", "task"=>{"title"=>"Show home after adding", "description"=>"plz"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Show home after adding"], ["description", "plz"], ["created_at", "2016-04-21 20:50:41.493158"], ["updated_at", "2016-04-21 20:50:41.493158"]] +  (1.3ms) commit transaction + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 1.7ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___2541757312969064253_70241145394840' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + app/controllers/tasks_controller.rb:22:in `create' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c3cdf0c1e76c9b1a/variables" for ::1 at 2016-04-21 13:50:41 -0700 + + +Started GET "/" for ::1 at 2016-04-21 13:51:36 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 24ms (Views: 21.7ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 13:51:39 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (2.5ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 13:51:45 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"2Ap/BTVJSZjbYJwrcqEHjAU7LOCKpt+7LdnIUzIfDdTOFgKzWnxaZpb+q3Q97hs6aQFPzFO7AvGJo9sXXWreEA==", "task"=>{"title"=>"just go home", "description"=>"plz do it"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "just go home"], ["description", "plz do it"], ["created_at", "2016-04-21 20:51:45.350757"], ["updated_at", "2016-04-21 20:51:45.350757"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-04-21 13:51:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 13:51:59 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.5ms) +Completed 200 OK in 23ms (Views: 18.0ms | ActiveRecord: 0.3ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 13:52:04 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Q5d8nB/1gX3fn0amSMyzafDgVkzDbVb18aNFtoNUsb5ViwEqcMCSg5IBcfkHg6/fnNo1YBpwi79V2Vby7CFieg==", "task"=>{"title"=>"maybe", "description"=>"does it go"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "maybe"], ["description", "does it go"], ["created_at", "2016-04-21 20:52:04.371413"], ["updated_at", "2016-04-21 20:52:04.371413"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-04-21 13:52:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 13:59:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-e19c41b63331edaa4f1c38cc08a2bbe6bd76871ba06380b5a94e929f81f8ad2a.css?body=1" for ::1 at 2016-04-21 13:59:25 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 13:59:25 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 13:59:25 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:59:25 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 13:59:25 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 13:59:25 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 13:59:25 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:59:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 13:59:25 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:00:10 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/home.self-e19c41b63331edaa4f1c38cc08a2bbe6bd76871ba06380b5a94e929f81f8ad2a.css?body=1" for ::1 at 2016-04-21 14:00:10 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:00:10 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:00:10 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:00:10 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 14:00:10 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:00:10 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:00:10 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:00:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:00:10 -0700 + + +Started DELETE "/tasks/2" for ::1 at 2016-04-21 14:00:13 -0700 + +ActionController::RoutingError (No route matches [DELETE] "/tasks/2"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (60.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.4ms) + + +Started GET "/" for ::1 at 2016-04-21 14:06:17 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (13.4ms) +Completed 200 OK in 37ms (Views: 34.8ms | ActiveRecord: 0.5ms) + + +Started DELETE "/tasks/16" for ::1 at 2016-04-21 14:06:20 -0700 + +AbstractController::ActionNotFound - The action 'destroy' could not be found for TasksController: + actionpack (4.2.6) lib/abstract_controller/base.rb:132:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/464b8ecbb4a00008/variables" for ::1 at 2016-04-21 14:06:20 -0700 + + +Started POST "/__better_errors/464b8ecbb4a00008/eval" for ::1 at 2016-04-21 14:06:59 -0700 + + +Started GET "/tasks" for ::1 at 2016-04-21 14:08:38 -0700 +Processing by TasksController#index as HTML + Task Load (4.7ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (16.0ms) +Completed 200 OK in 43ms (Views: 34.6ms | ActiveRecord: 5.5ms) + + +Started GET "/" for ::1 at 2016-04-21 14:08:39 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/4" for ::1 at 2016-04-21 14:08:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"4"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 17ms (Views: 15.1ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-21 14:08:44 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.8ms) +Completed 200 OK in 21ms (Views: 20.6ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/2" for ::1 at 2016-04-21 14:08:49 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"ps1UnxeHzYZTS0vr2u5DF64fN83prJsbAIYbL3qcKPCw0SkpeLLeeB7VfLSVoV+hwiVU4TCxRlGk/AhrFen7NA==", "id"=>"2"} +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate - Missing template tasks/destroy, application/destroy with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/annamason/C5/projects/TaskListRails/task-list/app/views" +: + actionview (4.2.6) lib/action_view/path_set.rb:46:in `find' + actionview (4.2.6) lib/action_view/lookup_context.rb:121:in `find' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:8:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/be4433d2d873c748/variables" for ::1 at 2016-04-21 14:08:49 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:09:32 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.9ms) +Completed 200 OK in 35ms (Views: 32.7ms | ActiveRecord: 0.5ms) + + +Started DELETE "/tasks/16" for ::1 at 2016-04-21 14:09:34 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"GsQfFEqYS7I0wypN3qaIWOzgagcSsOYjLlUDLPYt3ugM2GKiJa1YTHldHRKR6ZTugNoJK8utO2mKLxBomVgNLA==", "id"=>"16"} +Unpermitted parameters: _method, authenticity_token, id +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.2ms) + +ActionView::MissingTemplate - Missing template tasks/destroy, application/destroy with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/annamason/C5/projects/TaskListRails/task-list/app/views" +: + actionview (4.2.6) lib/action_view/path_set.rb:46:in `find' + actionview (4.2.6) lib/action_view/lookup_context.rb:121:in `find' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:8:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/6626d25d706f4671/variables" for ::1 at 2016-04-21 14:09:34 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:10:57 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 14:11:02 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.9ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 14:11:09 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"nYUX8rFbtRHjs7Jeg1AsYkZ6hvfV0mftaPyzZ7R2hdSLmWpE3m6m764thQHMHzDUKkDl2wzPuqfMhqAj2wNWEA==", "task"=>{"title"=>"try and delete me", "description"=>"i dare you"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "try and delete me"], ["description", "i dare you"], ["created_at", "2016-04-21 21:11:09.692694"], ["updated_at", "2016-04-21 21:11:09.692694"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-21 14:11:09 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasks/17" for ::1 at 2016-04-21 14:11:11 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"VR2saG3G24e1T0/KrNFvytXoWzWVyjFgzEyklqgVDsFDAdHeAvPIefjReJXjnnN8udI4GUzX7CpoNrfSx2DdBQ==", "id"=>"17"} +Unpermitted parameters: _method, authenticity_token, id +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.1ms) + +ActionView::MissingTemplate - Missing template tasks/destroy, application/destroy with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/annamason/C5/projects/TaskListRails/task-list/app/views" +: + actionview (4.2.6) lib/action_view/path_set.rb:46:in `find' + actionview (4.2.6) lib/action_view/lookup_context.rb:121:in `find' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:8:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/caf06a2f26d89a9a/variables" for ::1 at 2016-04-21 14:11:11 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 14:12:59 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.7ms) +Completed 200 OK in 26ms (Views: 20.0ms | ActiveRecord: 0.7ms) + + +Started GET "/" for ::1 at 2016-04-21 14:13:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 27ms (Views: 25.9ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/17" for ::1 at 2016-04-21 14:13:02 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"adhPuu2uCH2JFnifZZ/oQruauIhkVooapxewWlcmBCJ/xDIMgpsbg8SIT8Aq0PT016DbpL1LV1ADbaMeOFPX5g==", "id"=>"17"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 17]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 17]] +  (1.6ms) commit transaction +Completed 500 Internal Server Error in 7ms (ActiveRecord: 2.2ms) + +ActionView::MissingTemplate - Missing template tasks/destroy, application/destroy with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/annamason/C5/projects/TaskListRails/task-list/app/views" +: + actionview (4.2.6) lib/action_view/path_set.rb:46:in `find' + actionview (4.2.6) lib/action_view/lookup_context.rb:121:in `find' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:8:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f6f5e3d80b25ce17/variables" for ::1 at 2016-04-21 14:13:02 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:13:11 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/16" for ::1 at 2016-04-21 14:13:15 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"yISfHYuLUXpzcNVr/H8lQCAfooctcIouaSQ61boP6szemOKr5L5ChD7u4jSzMDn2TCXBq/RtV2TNXimR1Xo5CA==", "id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 16]] +  (0.5ms) commit transaction +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.8ms) + +ActionView::MissingTemplate - Missing template tasks/destroy, application/destroy with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/annamason/C5/projects/TaskListRails/task-list/app/views" +: + actionview (4.2.6) lib/action_view/path_set.rb:46:in `find' + actionview (4.2.6) lib/action_view/lookup_context.rb:121:in `find' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:8:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/07d2b4db2f32bc4c/variables" for ::1 at 2016-04-21 14:13:15 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:13:21 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/15" for ::1 at 2016-04-21 14:13:48 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"SSkRsSo6XdKDAVP6k1vL50C9pG30l9ZjnVxrwAo8zZpfNWwHRQ9OLM6fZKXcFNdRLIfHQS2KCyk5JniEZUkeXg==", "id"=>"15"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 15]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 8ms (ActiveRecord: 2.2ms) + + +Started GET "/" for ::1 at 2016-04-21 14:13:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 20ms (Views: 19.8ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/14" for ::1 at 2016-04-21 14:13:51 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"v+JsOG3iuY/fgmSElCu3o7vs5QnXueOKzLQBFES018mp/hGOAteqcZIcU9vbZKsV19aGJQ6kPsBozhJQK8EEDQ==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 14]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.7ms) + + +Started GET "/" for ::1 at 2016-04-21 14:13:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasks/13" for ::1 at 2016-04-21 14:13:54 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"1E2Ca5ZyF08f2lXLu91baM2TbaVtQBMpm5D00TkNTbfCUf/d+UcEsVJEYpT0kkfeoakOibRdzmM/6ueVVniecw==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 13]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 13]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 2.0ms) + + +Started GET "/" for ::1 at 2016-04-21 14:13:54 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 27ms (Views: 25.8ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasks/12" for ::1 at 2016-04-21 14:13:56 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"d+CqPKtruGw0EqLGqE4E5wLogrBtvdwOzqsSYqZlCjdh/NeKxF6rknmMlZnnARhRbtLhnLSgAURq0QEmyRDZ8w==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 12]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.9ms) + + +Started GET "/" for ::1 at 2016-04-21 14:13:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 14:14:26 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 27ms (Views: 24.7ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/7" for ::1 at 2016-04-21 14:14:30 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"7"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 7]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 14:14:31 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2016-04-21 14:14:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 14:14:33 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/9" for ::1 at 2016-04-21 14:14:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 14:14:35 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 14:17:10 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' +... method: :delete, form onsubmit="return confirm('Are you sur... +... ^: + app/views/tasks/index.html.erb:10:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e52611328f217a79/variables" for ::1 at 2016-04-21 14:17:10 -0700 + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + + +Started GET "/" for ::1 at 2016-04-21 14:17:11 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' +... method: :delete, form onsubmit="return confirm('Are you sur... +... ^: + app/views/tasks/index.html.erb:10:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/7a90e7bc0cb08960/variables" for ::1 at 2016-04-21 14:17:11 -0700 + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + + +Started GET "/" for ::1 at 2016-04-21 14:19:42 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 14:19:46 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.7ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 14:19:51 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"S+TRGqsb7LMiYUAAypLsIsipZqXiGeCwMmv2qWbShWVd+KysxC7/TW//d1+F3fCUpJMFiTsEPfqWEeXtCadWoQ==", "task"=>{"title"=>"Make delete confirmation pop up", "description"=>""}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Make delete confirmation pop up"], ["description", ""], ["created_at", "2016-04-21 21:19:51.679076"], ["updated_at", "2016-04-21 21:19:51.679076"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-21 14:19:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/18" for ::1 at 2016-04-21 14:19:55 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"pxb5qWPoYHInJt8CoWVElsSjZY+8b7uMVw9zWYVmkmqxCoQfDN1zjGq46F3uKlggqJkGo2VyZsbzdWAd6hNBrg==", "id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 18]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 18]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 2.0ms) + + +Started GET "/" for ::1 at 2016-04-21 14:19:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 14:19:58 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 14:20:03 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"51VVhsl/oXzvpb5YQhUPpWD1KYl0twK5T+9wBi6Qs5zxSSgwpkqygqI7iQcNWhMTDM9Kpa2q3/PrlWNCQeVgWA==", "task"=>{"title"=>"does pop up work", "description"=>"no"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "does pop up work"], ["description", "no"], ["created_at", "2016-04-21 21:20:03.352251"], ["updated_at", "2016-04-21 21:20:03.352251"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-04-21 14:20:03 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 27ms (Views: 26.3ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/19" for ::1 at 2016-04-21 14:20:09 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"RtA6Ue1QhHpnxv5pyPbm6C3xexShtS8tkya4uuDALIZQzEfngmWXhCpYyTaHufpeQcsYOHio8mc3XKv+j7X/Qg==", "id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 19]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 19]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.2ms) + + +Started GET "/" for ::1 at 2016-04-21 14:20:09 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-21 14:20:39 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 18ms (Views: 17.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 14:20:41 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 14:20:43 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"rSdwDh05ptDYdqWa+QDjPXyMwDr6HvT2ckTjZ3dX6cy7Ow24cgy1LpXoksW2T/+LELajFiMDKbzWPvAjGCI6CA==", "task"=>{"title"=>"mebbe", "description"=>""}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "mebbe"], ["description", ""], ["created_at", "2016-04-21 21:20:43.934536"], ["updated_at", "2016-04-21 21:20:43.934536"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-04-21 14:20:43 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/20" for ::1 at 2016-04-21 14:20:47 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"rIEmMSa6QBehIAbZYfSKl5awSW0Y9fjY61PE0eI6S8W6nVuHSY9T6ey+MYYuu5Yh+ooqQcHoJZJPKdeVjU+YAQ==", "id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 20]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 20]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.7ms) + + +Started GET "/" for ::1 at 2016-04-21 14:20:47 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 14:21:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 14:25:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 78ms (Views: 77.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-f51ee2ffd9b47e34da5d32f737371c8adf3d34a865c28747bb69d8dd070c9a1b.css?body=1" for ::1 at 2016-04-21 14:25:05 -0700 + + +Started GET "/assets/home.self-e19c41b63331edaa4f1c38cc08a2bbe6bd76871ba06380b5a94e929f81f8ad2a.css?body=1" for ::1 at 2016-04-21 14:25:05 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:25:05 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:25:05 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:25:05 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:25:05 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:25:05 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:25:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:25:05 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:25:15 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 102ms (Views: 101.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-116652a310aecc001c161cf76b381737aac6f694a1bca38f24f972e45dee45cf.css?body=1" for ::1 at 2016-04-21 14:25:15 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:25:15 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:25:15 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:25:15 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:25:15 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:25:15 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:25:15 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:25:15 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:25:39 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 56ms (Views: 55.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e53d45b7ab58ff08f8a5bab47a6c7b9cb49489fa04fc02721fd461d7d0fa22d4.css?body=1" for ::1 at 2016-04-21 14:25:39 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:25:39 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:25:39 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:25:39 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:25:39 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:25:39 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:25:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:25:39 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:25:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 62ms (Views: 61.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-4f20262fd04beb2c17da4b5b71218699579b12281ac823581f4ddb67ba0e3446.css?body=1" for ::1 at 2016-04-21 14:25:48 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:25:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:25:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:25:48 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:25:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:25:48 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:25:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:25:48 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:25:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 23ms (Views: 22.5ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasks.self-116652a310aecc001c161cf76b381737aac6f694a1bca38f24f972e45dee45cf.css?body=1" for ::1 at 2016-04-21 14:25:53 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:25:53 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:25:53 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:25:53 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:25:53 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:25:53 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:25:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:25:53 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:26:20 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-116652a310aecc001c161cf76b381737aac6f694a1bca38f24f972e45dee45cf.css?body=1" for ::1 at 2016-04-21 14:26:20 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:26:20 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:26:20 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:26:20 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:26:20 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:26:20 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:26:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:26:20 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:26:34 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 28ms (Views: 27.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-116652a310aecc001c161cf76b381737aac6f694a1bca38f24f972e45dee45cf.css?body=1" for ::1 at 2016-04-21 14:26:34 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:26:34 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:26:34 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:26:34 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:26:34 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:26:34 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:26:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:26:34 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:26:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 19ms (Views: 18.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-116652a310aecc001c161cf76b381737aac6f694a1bca38f24f972e45dee45cf.css?body=1" for ::1 at 2016-04-21 14:26:46 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:26:46 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:26:46 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:26:46 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:26:46 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:26:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:26:46 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:26:46 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:27:21 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 85ms (Views: 84.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-f9c8f70057fa14f8311e789dcca7229c2ce55f2bed44fe7b5914c01611398a33.css?body=1" for ::1 at 2016-04-21 14:27:21 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:27:21 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:27:21 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:27:21 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:27:21 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:27:21 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:27:21 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:27:21 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:27:26 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 77ms (Views: 76.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-2f9b20e97fa28e6cf9a2fdce405eed6ebf6d4a63a0a9331af550db26299700c8.css?body=1" for ::1 at 2016-04-21 14:27:26 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:27:26 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:27:26 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:27:26 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:27:26 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:27:26 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:27:26 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:27:26 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:27:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-f9c8f70057fa14f8311e789dcca7229c2ce55f2bed44fe7b5914c01611398a33.css?body=1" for ::1 at 2016-04-21 14:27:30 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:27:30 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:27:30 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:27:30 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:27:30 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:27:30 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:27:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:27:30 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:27:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 48ms (Views: 47.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-0b9467c815399a8733bedeb51559515c85d6c9cf61790124602c1b13853f6969.css?body=1" for ::1 at 2016-04-21 14:27:48 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:27:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:27:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:27:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:27:48 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:27:48 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:27:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:27:48 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:28:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 60ms (Views: 59.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-8b7cdcd67f56942662b6f0cbc63f0e22559a1ca626d462a0f5cd5d33599afc34.css?body=1" for ::1 at 2016-04-21 14:28:06 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:28:06 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:28:06 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:28:06 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:28:06 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:28:06 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:28:06 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:28:06 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:28:23 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 48ms (Views: 47.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-a3bc3d62bdeaa2477606ad826d1236ce0eaa49594adc7ea0957ef9ac72e39e97.css?body=1" for ::1 at 2016-04-21 14:28:23 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:28:23 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:28:23 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:28:23 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:28:23 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:28:23 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:28:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:28:23 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:29:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 48ms (Views: 46.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-9b2c9eeef0b5afa3843ec65d661ba688e25c7db2d835b6a9dcd9010ae65bfe26.css?body=1" for ::1 at 2016-04-21 14:29:45 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:29:45 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:29:45 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:29:45 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:29:45 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:29:45 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:29:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:29:45 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:29:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 18ms (Views: 17.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-9b2c9eeef0b5afa3843ec65d661ba688e25c7db2d835b6a9dcd9010ae65bfe26.css?body=1" for ::1 at 2016-04-21 14:29:46 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:29:46 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:29:46 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:29:46 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:29:46 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:29:46 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:29:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:29:46 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:29:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 61ms (Views: 60.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-322670a9b97b2794891c0a1f6fbc3c95b316b857385141f2aac1ce9a62192446.css?body=1" for ::1 at 2016-04-21 14:29:53 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:29:53 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:29:53 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:29:53 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:29:53 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:29:53 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:29:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:29:53 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:30:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 52ms (Views: 51.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-66d7d604ffb45318ac27f49a2f2b971d0d45bf996df4d9e03cc6915b0a5a85a5.css?body=1" for ::1 at 2016-04-21 14:30:00 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:30:00 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:30:00 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:30:00 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:30:00 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:30:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:30:00 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:30:00 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:30:16 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-66d7d604ffb45318ac27f49a2f2b971d0d45bf996df4d9e03cc6915b0a5a85a5.css?body=1" for ::1 at 2016-04-21 14:30:16 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:30:16 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:30:16 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:30:16 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:30:17 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:30:17 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:30:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:30:17 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:30:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 64ms (Views: 63.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-ce5ad79d3a101eeb675709096b72fb61261a28f7aa96618fb240ad16e4b52320.css?body=1" for ::1 at 2016-04-21 14:30:51 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:30:51 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:30:51 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:30:51 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:30:51 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:30:51 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:30:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:30:51 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:30:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 20ms (Views: 19.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-ce5ad79d3a101eeb675709096b72fb61261a28f7aa96618fb240ad16e4b52320.css?body=1" for ::1 at 2016-04-21 14:30:52 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:30:52 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:30:52 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:30:52 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:30:52 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:30:52 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:30:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:30:52 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:30:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 31ms (Views: 29.8ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasks.self-ce5ad79d3a101eeb675709096b72fb61261a28f7aa96618fb240ad16e4b52320.css?body=1" for ::1 at 2016-04-21 14:30:52 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:30:52 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:30:52 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:30:52 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:30:52 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:30:52 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:30:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:30:52 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:30:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-ce5ad79d3a101eeb675709096b72fb61261a28f7aa96618fb240ad16e4b52320.css?body=1" for ::1 at 2016-04-21 14:30:53 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:30:53 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:30:53 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:30:53 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:30:53 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:30:53 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:30:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:30:53 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:31:06 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 65ms (Views: 64.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-ef8381a308ad90c089c75c6ad872b775583577f0f64acebd09a3082409ab1def.css?body=1" for ::1 at 2016-04-21 14:31:06 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:31:06 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:31:06 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:31:06 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:31:06 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:31:06 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:31:06 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:31:06 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:31:18 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 43ms (Views: 42.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-7e7ba8b1ad176c322bf3fba8f1eccda018de1d424047f14d2aab2672ca8c88fe.css?body=1" for ::1 at 2016-04-21 14:31:18 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:31:18 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:31:18 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:31:18 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:31:18 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:31:18 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:31:18 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:31:18 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:31:33 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-7e7ba8b1ad176c322bf3fba8f1eccda018de1d424047f14d2aab2672ca8c88fe.css?body=1" for ::1 at 2016-04-21 14:31:33 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:31:33 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:31:33 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:31:33 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:31:33 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:31:33 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:31:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:31:33 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:31:41 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-7e7ba8b1ad176c322bf3fba8f1eccda018de1d424047f14d2aab2672ca8c88fe.css?body=1" for ::1 at 2016-04-21 14:31:41 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:31:41 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:31:41 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:31:41 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:31:41 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:31:41 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:31:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:31:41 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:31:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 26ms (Views: 24.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-7e7ba8b1ad176c322bf3fba8f1eccda018de1d424047f14d2aab2672ca8c88fe.css?body=1" for ::1 at 2016-04-21 14:31:46 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:31:46 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:31:46 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:31:46 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:31:46 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:31:46 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:31:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:31:46 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:32:15 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.8ms) +Completed 200 OK in 59ms (Views: 58.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-af5c8f8e546384440e7cfc572f214325846eb3116cc2e6eebeee718f301c007d.css?body=1" for ::1 at 2016-04-21 14:32:15 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:32:15 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:32:15 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:32:15 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:32:15 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:32:15 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:32:15 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:32:15 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:33:42 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 46ms (Views: 45.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-f1001f46ae40eb645debc37d8223dacc4609b4bc6a3a6d3e9b36dca4262959cf.css?body=1" for ::1 at 2016-04-21 14:33:42 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:33:42 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:33:42 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:33:42 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:33:42 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:33:42 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:33:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:33:42 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:33:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 61ms (Views: 60.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:33:48 -0700 + + +Started GET "/assets/tasks.self-adf7bfc35563ce031c63d4a2f7e39b1307ed075eaeb65d451fdf65db3bb0c83f.css?body=1" for ::1 at 2016-04-21 14:33:48 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:33:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:33:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:33:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:33:48 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:33:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:33:48 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:34:11 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 50ms (Views: 49.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-52d2763ed96f299ceac7aeb2ca69e6e8e25480970835024913c0961011c095e2.css?body=1" for ::1 at 2016-04-21 14:34:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:34:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:34:11 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:34:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:34:11 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:34:11 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:34:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:34:11 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:34:18 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 56ms (Views: 55.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-c33b7bc0c9d9163ab0443d1bfaeae809cbf00d382765100ac819c8f4317a74bb.css?body=1" for ::1 at 2016-04-21 14:34:18 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:34:18 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:34:18 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:34:18 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:34:18 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:34:18 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:34:18 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:34:18 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:35:33 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 14:35:39 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 14:35:42 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.2ms) +Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 14:35:44 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 14:41:19 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 14:41:34 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 58ms (Views: 57.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-f196d03e119f8348fe2dabe80b26cf625541c0a25d760917e9a4a398e3885e1a.css?body=1" for ::1 at 2016-04-21 14:41:34 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:41:34 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:41:34 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:41:34 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:41:34 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:41:34 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:41:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:41:34 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:00:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 22ms (Views: 21.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-f196d03e119f8348fe2dabe80b26cf625541c0a25d760917e9a4a398e3885e1a.css?body=1" for ::1 at 2016-04-21 15:00:58 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:00:58 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:00:58 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:00:58 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:00:58 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:00:58 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:00:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:00:58 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:01:27 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 66ms (Views: 64.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-ca67c76671f643b38c1dc2c0a7fb407d42fd6e84b1800024ae3ee3f191fd84fe.css?body=1" for ::1 at 2016-04-21 15:01:27 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:01:27 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:01:27 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:01:27 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:01:27 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:01:27 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:01:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:01:27 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:01:28 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-ca67c76671f643b38c1dc2c0a7fb407d42fd6e84b1800024ae3ee3f191fd84fe.css?body=1" for ::1 at 2016-04-21 15:01:28 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:01:28 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:01:28 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:01:28 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:01:28 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:01:28 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:01:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:01:28 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:01:37 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 63ms (Views: 62.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-1cab9967e545d1d7831d1dcb341f79dc0c53af3e7f99d4b4dea9a30a6f6ddd6f.css?body=1" for ::1 at 2016-04-21 15:01:38 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:01:38 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:01:38 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:01:38 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:01:38 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:01:38 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:01:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:01:38 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:01:54 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 66ms (Views: 65.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-7bcce0fbab581e50dc04c4d77a296581608e0c0b35660064d6d66d4523e81951.css?body=1" for ::1 at 2016-04-21 15:01:54 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:01:54 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:01:54 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:01:54 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:01:54 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:01:54 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:01:54 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:01:54 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:01:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 58ms (Views: 57.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-730ab76c8a91f39bc20d0c9db16298ba3b460110602d474ed0a2d654cd0f0db4.css?body=1" for ::1 at 2016-04-21 15:01:58 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:01:58 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:01:58 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:01:58 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:01:58 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:01:58 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:01:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:01:58 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:02:12 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 48ms (Views: 46.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e5d8828b8c00d95864d3826d50e09ed4900c5daed56856d3e6aa7758a23b1b6a.css?body=1" for ::1 at 2016-04-21 15:02:12 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:02:12 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:02:12 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:02:12 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:02:12 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:02:12 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:02:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:02:12 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:02:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasks.self-e5d8828b8c00d95864d3826d50e09ed4900c5daed56856d3e6aa7758a23b1b6a.css?body=1" for ::1 at 2016-04-21 15:02:13 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:02:13 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:02:13 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:02:13 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:02:13 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:02:13 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:02:13 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:02:13 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:02:33 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 45ms (Views: 44.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-5c389adc181bf5ed21a676cf8f92b60026bb942317759cb6be429af2d219969c.css?body=1" for ::1 at 2016-04-21 15:02:34 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:02:34 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:02:34 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:02:34 -0700 + + +Started GET "/assets/tasks.self-5c389adc181bf5ed21a676cf8f92b60026bb942317759cb6be429af2d219969c.css?body=1" for ::1 at 2016-04-21 15:02:34 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:02:34 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:02:34 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:02:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:02:34 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:02:57 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 46ms (Views: 45.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-86c3b2c0f2341470fc429f009f4d5598f963825103352675c55a9c06a6e0e4d9.css?body=1" for ::1 at 2016-04-21 15:02:57 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:02:57 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:02:57 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:02:57 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:02:57 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:02:57 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:02:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:02:57 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:03:03 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 64ms (Views: 63.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-c482466b877721f623af94f91beb7004169ccd50b6aee7fea1085336947dc9fd.css?body=1" for ::1 at 2016-04-21 15:03:04 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:03:04 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:03:04 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:03:04 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:03:04 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:03:04 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:03:04 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:03:04 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:03:21 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:03:21 -0700 + + +Started GET "/assets/tasks.self-c482466b877721f623af94f91beb7004169ccd50b6aee7fea1085336947dc9fd.css?body=1" for ::1 at 2016-04-21 15:03:21 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:03:21 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:03:21 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:03:21 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:03:21 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:03:21 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:03:21 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:03:33 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 60ms (Views: 59.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-610555ff528e20ba1c777afc2d7537de34f62e60df6d40b37df7519059f2d94b.css?body=1" for ::1 at 2016-04-21 15:03:33 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:03:33 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:03:33 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:03:33 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:03:33 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:03:33 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:03:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:03:33 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:03:40 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 68ms (Views: 66.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-8ae87029e1cbbc4ea6306307d8c07fe513a34e64b8593ed78da0f1f8579619f0.css?body=1" for ::1 at 2016-04-21 15:03:40 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:03:40 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:03:40 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:03:40 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:03:40 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:03:40 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:03:40 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:03:40 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:03:44 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:03:45 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 15:03:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 21ms (Views: 20.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:03:47 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.1ms) +Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 15:03:49 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-21 15:04:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-8ae87029e1cbbc4ea6306307d8c07fe513a34e64b8593ed78da0f1f8579619f0.css?body=1" for ::1 at 2016-04-21 15:04:00 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:04:00 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:04:00 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:04:00 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:04:00 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:04:00 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:04:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:04:00 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:04:06 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.2ms) +Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 15:04:07 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 24ms (Views: 23.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:04:08 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.2ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 15:04:09 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 15:04:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 15:04:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:04:28 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:04:57 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.5ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-8ae87029e1cbbc4ea6306307d8c07fe513a34e64b8593ed78da0f1f8579619f0.css?body=1" for ::1 at 2016-04-21 15:04:57 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:04:57 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:04:57 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:04:57 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:04:57 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:04:57 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:04:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:04:57 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:06:54 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (3.9ms) +Completed 200 OK in 19ms (Views: 18.9ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-8ae87029e1cbbc4ea6306307d8c07fe513a34e64b8593ed78da0f1f8579619f0.css?body=1" for ::1 at 2016-04-21 15:06:54 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:06:54 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:06:54 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:06:54 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:06:54 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:06:54 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:06:54 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:06:54 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:07:04 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.5ms) +Completed 200 OK in 24ms (Views: 23.8ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-8ae87029e1cbbc4ea6306307d8c07fe513a34e64b8593ed78da0f1f8579619f0.css?body=1" for ::1 at 2016-04-21 15:07:04 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:07:04 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:07:04 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:07:04 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:07:04 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:07:04 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:07:04 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:07:04 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:07:12 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.7ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-8ae87029e1cbbc4ea6306307d8c07fe513a34e64b8593ed78da0f1f8579619f0.css?body=1" for ::1 at 2016-04-21 15:07:12 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:07:12 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:07:12 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:07:12 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:07:12 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:07:12 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:07:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:07:12 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:08:24 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:08:26 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 15:08:27 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:08:28 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.2ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 15:08:29 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:08:31 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.4ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 15:08:32 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 25ms (Views: 23.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:08:34 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.1ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:09:52 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.1ms) +Completed 200 OK in 60ms (Views: 59.5ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-f0bfc4654b761b88f2f7ad02c1721b8daf966dd26bcabfd6ac32a3afb64d8596.css?body=1" for ::1 at 2016-04-21 15:09:52 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:09:52 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:09:52 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:09:52 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:09:52 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:09:52 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:09:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:09:52 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:10:00 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.1ms) +Completed 200 OK in 60ms (Views: 59.1ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-00db43f48d4fbb221510d3bf6e86b03e2ffc5324d942dd038b756c9a59675280.css?body=1" for ::1 at 2016-04-21 15:10:00 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:10:00 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:10:00 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:10:00 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:10:00 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:10:00 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:10:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:10:00 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:10:08 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.2ms) +Completed 200 OK in 66ms (Views: 66.0ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-f6c17f448a78734877c46075dd66fed113046901c239e04d9b25498d57cba077.css?body=1" for ::1 at 2016-04-21 15:10:08 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:10:08 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:10:08 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:10:08 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:10:08 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:10:08 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:10:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:10:08 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:10:18 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.1ms) +Completed 200 OK in 60ms (Views: 59.2ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-ad2fad25cf4ad3623c44344a1c644cbbab79ca56f296c0350c10697133782276.css?body=1" for ::1 at 2016-04-21 15:10:18 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:10:18 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:10:18 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:10:18 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:10:18 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:10:18 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:10:18 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:10:18 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:10:26 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.1ms) +Completed 200 OK in 61ms (Views: 59.8ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-5f540b0d21c92bfb418fd9e5f480567579383cc1683ec7c1798787e19b0cf886.css?body=1" for ::1 at 2016-04-21 15:10:27 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:10:27 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:10:27 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:10:27 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:10:27 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:10:27 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:10:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:10:27 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:10:34 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 25ms (Views: 24.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:10:36 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (2.0ms) +Completed 200 OK in 22ms (Views: 21.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 15:10:37 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:10:38 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:11:07 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.1ms) +Completed 200 OK in 47ms (Views: 46.1ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e9cdbd69709eae013f2a02b6a199bdda0ad0e1433db910c4bb54ea1cb20bafe1.css?body=1" for ::1 at 2016-04-21 15:11:08 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:11:08 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:11:08 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:11:08 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:11:08 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:11:08 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:11:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:11:08 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:11:14 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.3ms) +Completed 200 OK in 63ms (Views: 62.4ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-efb6253fa988c8103e9b00215ede854cdde5ea869d7270cd8f71b60f70df54b7.css?body=1" for ::1 at 2016-04-21 15:11:14 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:11:14 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:11:14 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:11:14 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:11:14 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:11:14 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:11:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:11:14 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:11:42 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.1ms) +Completed 200 OK in 44ms (Views: 43.8ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-a8acecd197ce2a5d7bc69910dbcffadd4586fae7d73841d41e75ace8dea743f9.css?body=1" for ::1 at 2016-04-21 15:11:43 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:11:43 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:11:43 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:11:43 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:11:43 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:11:43 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:11:43 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:11:43 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:11:55 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.1ms) +Completed 200 OK in 57ms (Views: 56.4ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-d6358e101a828386f2ff0f0671cd86037b19beb6a9fd2d25c563869bdd477669.css?body=1" for ::1 at 2016-04-21 15:11:55 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:11:55 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:11:55 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:11:55 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:11:55 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:11:55 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:11:55 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:11:55 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:12:04 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (2.2ms) +Completed 200 OK in 55ms (Views: 54.9ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-deb2422076bbcbd3b9cafea4f4b85d8e8c58366a6c6c778184b48b40488f62c8.css?body=1" for ::1 at 2016-04-21 15:12:04 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:12:04 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:12:04 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:12:04 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:12:04 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:12:04 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:12:04 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:12:04 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:12:12 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.4ms) +Completed 200 OK in 62ms (Views: 61.1ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-d6b65df33fb8595955978e154c799a53b4899816b651363777d38c06f67771a3.css?body=1" for ::1 at 2016-04-21 15:12:12 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:12:12 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:12:12 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:12:12 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:12:12 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:12:12 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:12:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:12:12 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:12:18 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:12:21 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.4ms) +Completed 200 OK in 21ms (Views: 19.9ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 15:12:24 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:12:25 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 15:12:27 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:12:28 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.2ms) +Completed 200 OK in 22ms (Views: 21.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:13:00 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (8.1ms) +Completed 200 OK in 67ms (Views: 65.9ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-a3bba2f467bf0b8042f01a88a917cbc792918438d0d9008fbd37171a5a08b5d1.css?body=1" for ::1 at 2016-04-21 15:13:00 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:13:00 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:13:00 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:13:00 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:13:00 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:13:00 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:13:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:13:00 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:13:19 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.1ms) +Completed 200 OK in 45ms (Views: 44.1ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-f154bc7f796f16982c553238d4bf8d9cc69f9959d3a0dd06ab071397c0be24ce.css?body=1" for ::1 at 2016-04-21 15:13:19 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:13:19 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:13:19 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:13:19 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:13:19 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:13:19 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:13:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:13:19 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:13:28 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.1ms) +Completed 200 OK in 59ms (Views: 59.0ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-26ba9b7378f5afc258491fddb7524b342ad7c730bd3f426deb34dd415ae5d6a7.css?body=1" for ::1 at 2016-04-21 15:13:28 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:13:28 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:13:28 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:13:28 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:13:28 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:13:28 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:13:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:13:28 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:13:42 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.9ms) +Completed 200 OK in 56ms (Views: 55.5ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-8d58b6d6b62128b85a6165b8002496b2e8f2961fc19b228cdda276580891ba14.css?body=1" for ::1 at 2016-04-21 15:13:42 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:13:42 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:13:42 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:13:42 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:13:42 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:13:42 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:13:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:13:42 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:14:00 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.1ms) +Completed 200 OK in 51ms (Views: 50.3ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-aa0e668551c4488ea1108e32ea0bcc8854bfd2b2cba21f8d45c2e0aa692826b0.css?body=1" for ::1 at 2016-04-21 15:14:00 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:14:00 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:14:00 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:14:00 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:14:00 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:14:00 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:14:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:14:00 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:14:13 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.1ms) +Completed 200 OK in 83ms (Views: 82.5ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-1b4e3c7304df78188cf07ffbcf69fd18e373cdcce6b7f06d21c1d3cce792a2fe.css?body=1" for ::1 at 2016-04-21 15:14:13 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:14:13 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:14:13 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:14:13 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:14:13 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:14:13 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:14:13 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:14:13 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:14:20 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.2ms) +Completed 200 OK in 57ms (Views: 56.9ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-f626ed77526eca4a2c822be8c1e3751c05973f3604a30b3fa3b9939d47530d30.css?body=1" for ::1 at 2016-04-21 15:14:20 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:14:20 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:14:20 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:14:20 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:14:20 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:14:20 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:14:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:14:20 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:14:35 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.0ms) +Completed 200 OK in 59ms (Views: 58.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-d1f0d235c42fe14c47c99fbd88bd46a0fa26436391a67647e1fbf5a326961bf8.css?body=1" for ::1 at 2016-04-21 15:14:35 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:14:35 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:14:35 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:14:35 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:14:35 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:14:35 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:14:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:14:35 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:14:44 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (2.0ms) +Completed 200 OK in 90ms (Views: 89.2ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:14:44 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:14:44 -0700 + + +Started GET "/assets/tasks.self-5e04f40e31729dbef28fee6dd328239cc5349fe0c922c2fa948b8b2679fc3f2f.css?body=1" for ::1 at 2016-04-21 15:14:44 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:14:44 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:14:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:14:44 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:14:44 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:14:44 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:14:55 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.2ms) +Completed 200 OK in 61ms (Views: 60.6ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-1ac6317fff821a2d6aeec1edb6535301cabfa88fff04fb8bae7846a2a0e2e40c.css?body=1" for ::1 at 2016-04-21 15:14:56 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:14:56 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:14:56 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:14:56 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:14:56 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:14:56 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:14:56 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:14:56 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:15:03 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.3ms) +Completed 200 OK in 17ms (Views: 16.9ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-d1f0d235c42fe14c47c99fbd88bd46a0fa26436391a67647e1fbf5a326961bf8.css?body=1" for ::1 at 2016-04-21 15:15:03 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:15:03 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:15:03 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:15:03 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:15:03 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:15:03 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:15:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:15:03 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:15:14 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.1ms) +Completed 200 OK in 52ms (Views: 52.0ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-00bde76ac338a44f075e3965aa718eba01a0dca643d32ccde2cec906358eaeb1.css?body=1" for ::1 at 2016-04-21 15:15:14 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:15:14 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:15:14 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:15:14 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:15:14 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:15:14 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:15:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:15:14 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:15:21 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.2ms) +Completed 200 OK in 48ms (Views: 48.0ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-d658d14de1e449cb36ddaccf56b1b37debe6dcf3ac389de7e0c8e4649630fa2e.css?body=1" for ::1 at 2016-04-21 15:15:21 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:15:21 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:15:21 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:15:21 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:15:21 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:15:21 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:15:21 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:15:21 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:15:25 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (2.5ms) +Completed 200 OK in 61ms (Views: 60.5ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-d15053eaf525fee14a38dd5dae043c1a3913e0d1f447996466efa44ae7b39f28.css?body=1" for ::1 at 2016-04-21 15:15:25 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:15:25 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:15:25 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:15:25 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:15:25 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:15:25 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:15:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:15:25 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:15:45 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.2ms) +Completed 200 OK in 66ms (Views: 66.0ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-feed81a8bb04d51d701c27c5d0d57b088dbd3ed7a2c02b78b4f7713773695e8c.css?body=1" for ::1 at 2016-04-21 15:15:45 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:15:45 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:15:45 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:15:45 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:15:45 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:15:45 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:15:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:15:45 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:16:02 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.6ms) +Completed 200 OK in 59ms (Views: 58.9ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e7db12746eb3fcd9db197504542d0d6fe05332cf73773b06d35082930a0f891e.css?body=1" for ::1 at 2016-04-21 15:16:02 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:16:02 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:16:02 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:16:02 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:16:02 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:16:02 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:16:02 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:16:02 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:16:09 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.2ms) +Completed 200 OK in 61ms (Views: 60.2ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-dbc76a01d19f91bd00bcd67b8e8d849ef6568abdd1340774a82c0bacb9a2ba68.css?body=1" for ::1 at 2016-04-21 15:16:09 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:16:10 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:16:10 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:16:10 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:16:10 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:16:10 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:16:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:16:10 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:16:37 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.7ms) +Completed 200 OK in 76ms (Views: 75.5ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-6a9a335670c9df8ffea26634bb2e386f9c0bc0091b5381b8201ce402ff80f9f7.css?body=1" for ::1 at 2016-04-21 15:16:37 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:16:37 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:16:37 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:16:37 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:16:37 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:16:37 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:16:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:16:37 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:16:46 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.1ms) +Completed 200 OK in 60ms (Views: 59.3ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-5ece3f5e0aa7d6d4d40822dd0729bbf499d7aa65d3eb2141f94ed5a919d52d8d.css?body=1" for ::1 at 2016-04-21 15:16:46 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:16:46 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:16:46 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:16:46 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:16:46 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:16:46 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:16:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:16:46 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:16:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 21ms (Views: 20.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 15:16:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 25ms (Views: 24.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:16:57 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 15:16:57 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 15:17:16 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 66ms (Views: 65.8ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-0929ff5de9de0d727ce30f48dbbeee08f839f3c3cc4e476a7181bbf0d8a72224.css?body=1" for ::1 at 2016-04-21 15:17:16 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:17:16 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:17:16 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:17:16 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:17:16 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:17:16 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:17:16 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:17:16 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:17:18 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.3ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 15:17:20 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 23ms (Views: 22.7ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 15:17:23 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 15:17:39 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 71ms (Views: 70.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-40a3377d07eccf243e5bb63751eb5b81e71e78a9da31cee63ed150c7ab0aeacd.css?body=1" for ::1 at 2016-04-21 15:17:39 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 15:17:39 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:17:39 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:17:39 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:17:39 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:17:39 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:17:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:17:39 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 15:22:53 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.1ms) +Completed 200 OK in 24ms (Views: 23.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 15:23:03 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"FF+MwlOVKc3Z8vZ6HJsNMaoCiEmS+DycZ6FPRh3Z8csCQ/F0PKA6M5RswSVT1BGHxjjrZUvl4dbD21wCcqwiDw==", "task"=>{"title"=>"Title Goes Here...", "description"=>"Testing it"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.9ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Title Goes Here..."], ["description", "Testing it"], ["created_at", "2016-04-21 22:23:03.470032"], ["updated_at", "2016-04-21 22:23:03.470032"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for ::1 at 2016-04-21 15:23:03 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/21" for ::1 at 2016-04-21 15:23:09 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"fnKOVdb44QmFGmAmOhGlembcZyVj3sjpl1hDVGtQJgVobvPjuc3y98iEV3l1XrnMCuYECbrDFaMzIlAQBCX1wQ==", "id"=>"21"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 21]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 21]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.9ms) + + +Started GET "/" for ::1 at 2016-04-21 15:23:09 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:00:35 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.3ms) +Completed 200 OK in 31ms (Views: 28.9ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasks.self-40a3377d07eccf243e5bb63751eb5b81e71e78a9da31cee63ed150c7ab0aeacd.css?body=1" for ::1 at 2016-04-21 16:00:35 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:00:35 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 16:00:35 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:00:35 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:00:35 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:00:35 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:00:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:00:35 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:01:03 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (11.1ms) +Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-40a3377d07eccf243e5bb63751eb5b81e71e78a9da31cee63ed150c7ab0aeacd.css?body=1" for ::1 at 2016-04-21 16:01:03 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 16:01:03 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:01:03 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:01:03 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:01:03 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:01:03 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:01:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:01:03 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:01:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 19ms (Views: 18.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-40a3377d07eccf243e5bb63751eb5b81e71e78a9da31cee63ed150c7ab0aeacd.css?body=1" for ::1 at 2016-04-21 16:01:13 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:01:13 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:01:13 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:01:13 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 16:01:13 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:01:13 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:01:13 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:01:13 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:01:19 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.4ms) +Completed 200 OK in 25ms (Views: 23.9ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-40a3377d07eccf243e5bb63751eb5b81e71e78a9da31cee63ed150c7ab0aeacd.css?body=1" for ::1 at 2016-04-21 16:01:19 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:01:19 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:01:19 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:01:19 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:01:19 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 16:01:19 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:01:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:01:19 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-21 16:01:34 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 16.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 16:01:41 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"FAObhUqESPGYgQBv8FQOoVdNM3ShQJjI69nIHRa0bNsCH+YzJbFbD9UfNzC/GxIXO3dQWHhdRYJPo9tZecG/Hw==", "task"=>{"title"=>"Did I do this?", "description"=>"is it completed or no"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Did I do this?"], ["description", "is it completed or no"], ["created_at", "2016-04-21 23:01:41.873810"], ["updated_at", "2016-04-21 23:01:41.873810"]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-04-21 16:01:41 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 22ms (Views: 20.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/22" for ::1 at 2016-04-21 16:01:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"22"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 22]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 23ms (Views: 21.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/22" for ::1 at 2016-04-21 16:01:48 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks/22"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (60.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (94.1ms) + + +Started GET "/tasks" for ::1 at 2016-04-21 16:06:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.5ms) +Completed 200 OK in 31ms (Views: 28.3ms | ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-04-21 16:06:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 16:06:04 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.5ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 16:06:08 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"6KpPMyJosrg47q3WyaHP9PozCkNEzSMzExpLX3FWHhb+tjKFTV2hRnVwmomG7tNClglpb53Q/nm3YFgbHiPN0g==", "task"=>{"title"=>"testing", "description"=>"test test"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "testing"], ["description", "test test"], ["created_at", "2016-04-21 23:06:08.491538"], ["updated_at", "2016-04-21 23:06:08.491538"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-21 16:06:08 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/23" for ::1 at 2016-04-21 16:06:10 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"VZtvyvt8h9wHh0rRfRaFexP85uixN59shCSeELCyMPZDhxJ8lEmUIkoZfY4yWZnNf8aFxGgqQiYgXo1U38fjMg==", "id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 23]] +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:06:10 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 21ms (Views: 19.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/23" for ::1 at 2016-04-21 16:06:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 23]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/23" for ::1 at 2016-04-21 16:06:18 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"CpKwqR5R7J+zV7M0i5C2XLjDuHP3WlOf4yojh74ZnMQcjs0fcWT/Yf7JhGvE36rq1PnbXy5HjtVHUDDD0WxPAA==", "id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 23]] +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:06:18 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 19ms (Views: 18.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/23" for ::1 at 2016-04-21 16:06:20 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 23]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/23" for ::1 at 2016-04-21 16:06:23 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"dN1xinccaZw9doAirhgfi/JkJfdYG/qrEbUvfQJcNw5iwQw8GCl6YnDot33hVwM9nl5G24EGJ+G1zzw5bSnkyg==", "id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 23]] +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:06:23 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 16:06:34 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.9ms) +Completed 200 OK in 26ms (Views: 24.0ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasks/23" for ::1 at 2016-04-21 16:06:36 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"leTUM61jBLvY218BepFakwzwLmB9iv6Q8dvzN/CD6wmD+KmFwlYXRZVFaF413kYlYMpNTKSXI9pVoeBzn/Y4zQ==", "id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 23]] +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms) + +RuntimeError - : + app/controllers/tasks_controller.rb:36:in `update' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/aa47f24db1734156/variables" for ::1 at 2016-04-21 16:06:36 -0700 + + +Started POST "/__better_errors/aa47f24db1734156/eval" for ::1 at 2016-04-21 16:06:40 -0700 + + +Started POST "/__better_errors/aa47f24db1734156/eval" for ::1 at 2016-04-21 16:06:46 -0700 + + +Started GET "/tasks" for ::1 at 2016-04-21 16:07:03 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.9ms) +Completed 200 OK in 32ms (Views: 29.2ms | ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-04-21 16:07:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/23" for ::1 at 2016-04-21 16:07:06 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"07hhGpDGwpjQjC71uzvbcjinvLoCud149VgBVCsIJN3FpBys//PRZp0SGar0dMfEVJ3fltukADJRIhIQRH33GQ==", "id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 23]] +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms) + +RuntimeError - : + app/controllers/tasks_controller.rb:37:in `update' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/683d23491ee3260a/variables" for ::1 at 2016-04-21 16:07:06 -0700 + + +Started POST "/__better_errors/683d23491ee3260a/eval" for ::1 at 2016-04-21 16:07:09 -0700 + + +Started GET "/tasks" for ::1 at 2016-04-21 16:07:27 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.4ms) +Completed 200 OK in 23ms (Views: 20.9ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-21 16:07:27 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/23" for ::1 at 2016-04-21 16:07:30 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"Nw0RcAbqO1HDDaAC4uXPvaAQLmGvLGkRgi3FnMjvLCUhEWzGad8or46Tl12tqtMLzCpNTXYxtFsmV9bYp5r/4Q==", "id"=>"23"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 23]] +Redirected to http://localhost:3000/ +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.2ms) + +RuntimeError - : + app/controllers/tasks_controller.rb:38:in `update' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/2299ee81d452770d/variables" for ::1 at 2016-04-21 16:07:30 -0700 + + +Started POST "/__better_errors/2299ee81d452770d/eval" for ::1 at 2016-04-21 16:07:35 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:07:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.3ms) +Completed 200 OK in 34ms (Views: 31.6ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/23" for ::1 at 2016-04-21 16:07:54 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 23]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2016-04-21 16:07:56 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/23" for ::1 at 2016-04-21 16:07:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 23]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/23" for ::1 at 2016-04-21 16:08:01 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"K4Ik6ZBHXt7oL95ocmSIwR2k+by87/Uc+8YYnhiNrAE9nllf/3JNIKWx6Tc9K5R3cZ6akGXyKFZfvAvad/h/xQ==", "id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 23]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-21 16:08:01 -0700"], ["updated_at", "2016-04-21 23:08:01.337416"], ["id", 23]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 500 Internal Server Error in 7ms (ActiveRecord: 1.9ms) + +RuntimeError - : + app/controllers/tasks_controller.rb:39:in `update' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e28a4d136894be42/variables" for ::1 at 2016-04-21 16:08:01 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:08:12 -0700 +Processing by TasksController#index as HTML + Task Load (0.8ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (17.4ms) +Completed 200 OK in 38ms (Views: 34.8ms | ActiveRecord: 1.1ms) + + +Started PATCH "/tasks/23" for ::1 at 2016-04-21 16:08:14 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"ov+e3BTKmQjE80O3q035mWbBhMLEn/ycJj7h9ojwNG+04+Nqe/+K9oltdOjkAuUvCvvn7h2CIdaCRPKy54Xnqw==", "id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 23]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-21 16:08:14 -0700"], ["updated_at", "2016-04-21 23:08:14.261625"], ["id", 23]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 1.9ms) + + +Started GET "/" for ::1 at 2016-04-21 16:08:14 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.8ms) +Completed 200 OK in 28ms (Views: 27.2ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/23" for ::1 at 2016-04-21 16:08:15 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 23]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/23" for ::1 at 2016-04-21 16:09:13 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 23]] + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 28ms (Views: 26.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 16:09:13 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:09:13 -0700 + + +Started GET "/assets/tasks.self-40a3377d07eccf243e5bb63751eb5b81e71e78a9da31cee63ed150c7ab0aeacd.css?body=1" for ::1 at 2016-04-21 16:09:13 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:09:13 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:09:13 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:09:13 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:09:13 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:09:13 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:09:14 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.1ms) +Completed 200 OK in 21ms (Views: 20.6ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/23" for ::1 at 2016-04-21 16:09:17 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"sQFUmkdAHcjCgH8IKXNqYCA8kWJG4BP+TAPIbWkj6aynHSksKHUONo8eSFdmPHbWTAbyTp/9zrToedspBlY6aA==", "id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 23]] +  (0.0ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 23]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.8ms) + + +Started GET "/" for ::1 at 2016-04-21 16:09:17 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/22" for ::1 at 2016-04-21 16:09:19 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"22"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 22]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/22" for ::1 at 2016-04-21 16:09:25 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"qG9i1xU8uDM2pthov6FkPn1itDu3UC4vWNKoRjgcPIS+cx9hegmrzXs47zfw7niIEVjXF25N82X8qLsCV2nvQA==", "id"=>"22"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 22]] +  (0.1ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-21 16:09:25 -0700"], ["updated_at", "2016-04-21 23:09:25.799298"], ["id", 22]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/" for ::1 at 2016-04-21 16:09:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/22" for ::1 at 2016-04-21 16:09:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"22"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 22]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:09:36 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2" for ::1 at 2016-04-21 16:19:24 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"2RhVeJ3YCvL8TVAIwLF5c9bnxjoxYJPxGVKv2KRv7DvPBCjO8u0ZDLHTZ1eP/mXFut2lFuh9Tru9KLycyxo//w==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]] +  (0.1ms) begin transaction + SQL (0.7ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-21 16:19:24 -0700"], ["updated_at", "2016-04-21 23:19:24.307180"], ["id", 2]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.4ms) + + +Started GET "/" for ::1 at 2016-04-21 16:19:24 -0700 +Processing by TasksController#index as HTML + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (12.4ms) +Completed 200 OK in 39ms (Views: 37.6ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/2" for ::1 at 2016-04-21 16:19:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:26:36 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 27ms (Views: 24.9ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasks.self-40a3377d07eccf243e5bb63751eb5b81e71e78a9da31cee63ed150c7ab0aeacd.css?body=1" for ::1 at 2016-04-21 16:26:36 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 16:26:36 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:26:36 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:26:36 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:26:36 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:26:36 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:26:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:26:36 -0700 + + +Started GET "/tasks/3" for ::1 at 2016-04-21 16:26:38 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 16:28:41 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (7.2ms) +Completed 200 OK in 32ms (Views: 28.5ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasks.self-40a3377d07eccf243e5bb63751eb5b81e71e78a9da31cee63ed150c7ab0aeacd.css?body=1" for ::1 at 2016-04-21 16:28:41 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 16:28:41 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:28:41 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:28:41 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:28:41 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:28:41 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:28:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:28:41 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:28:42 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/completed" for ::1 at 2016-04-21 16:28:45 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.5ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:28:49 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 24ms (Views: 23.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 16:28:50 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.6ms) +Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 16:28:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/completed" for ::1 at 2016-04-21 16:28:55 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.0ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/completed" for ::1 at 2016-04-21 16:29:24 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.8ms) +Completed 500 Internal Server Error in 64ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `tasks_completed_path' for #<#:0x007fc4971f8fc0> +Did you mean? tasks_add_path: + app/views/layouts/application.html.erb:16:in `_app_views_layouts_application_html_erb__1461478569525660580_70241146940640' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/64abd9d5ce272dc1/variables" for ::1 at 2016-04-21 16:29:24 -0700 + + +Started GET "/completed" for ::1 at 2016-04-21 16:29:49 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.1ms) +Completed 500 Internal Server Error in 74ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `tasks_completed_path' for #<#:0x007fc497201710> +Did you mean? tasks_add_path: + app/views/layouts/application.html.erb:16:in `_app_views_layouts_application_html_erb__1461478569525660580_70241162858120' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ecf8618c15bbf331/variables" for ::1 at 2016-04-21 16:29:49 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:31:21 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-21 16:31:22 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"completed"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 2ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find Task with 'id'=completed: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasks_controller.rb:12:in `show' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasks/completed" for ::1 at 2016-04-21 16:31:22 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"completed"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find Task with 'id'=completed: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasks_controller.rb:12:in `show' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/40b9ed3b3406b2b8/variables" for ::1 at 2016-04-21 16:31:22 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:31:35 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 41ms (Views: 38.6ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/tasks.self-40a3377d07eccf243e5bb63751eb5b81e71e78a9da31cee63ed150c7ab0aeacd.css?body=1" for ::1 at 2016-04-21 16:31:35 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 16:31:35 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:31:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:31:35 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:31:35 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:31:35 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:31:35 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:31:35 -0700 + + +Started GET "/tasks/completed" for ::1 at 2016-04-21 16:31:36 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"completed"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 2ms (ActiveRecord: 0.2ms) + +ActiveRecord::RecordNotFound - Couldn't find Task with 'id'=completed: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasks_controller.rb:12:in `show' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasks/completed" for ::1 at 2016-04-21 16:31:36 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"completed"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 2ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find Task with 'id'=completed: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasks_controller.rb:12:in `show' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e009e3dc6c08d04f/variables" for ::1 at 2016-04-21 16:31:36 -0700 + + +Started GET "/tasks/completed" for ::1 at 2016-04-21 16:31:38 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"completed"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find Task with 'id'=completed: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasks_controller.rb:12:in `show' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/34bb3f6f93649a7d/variables" for ::1 at 2016-04-21 16:31:38 -0700 + + +Started GET "/tasks/completed" for ::1 at 2016-04-21 16:31:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"completed"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find Task with 'id'=completed: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasks_controller.rb:12:in `show' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasks/completed" for ::1 at 2016-04-21 16:31:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"completed"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find Task with 'id'=completed: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasks_controller.rb:12:in `show' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/d8ca17a1a28ce7d1/variables" for ::1 at 2016-04-21 16:31:43 -0700 + + +Started GET "/tasks/completed" for ::1 at 2016-04-21 16:31:53 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (5.9ms) +Completed 200 OK in 28ms (Views: 25.9ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-21 16:31:54 -0700 +Processing by TasksController#completed as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (4.5ms) +Completed 200 OK in 25ms (Views: 23.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-21 16:31:55 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.1ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-21 16:31:55 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.9ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-21 16:31:55 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.7ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-21 16:31:56 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.3ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:31:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-21 16:31:57 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.9ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:31:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-21 16:31:59 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (6.2ms) +Completed 200 OK in 28ms (Views: 26.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-21 16:32:08 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.4ms) +Completed 200 OK in 21ms (Views: 20.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-40a3377d07eccf243e5bb63751eb5b81e71e78a9da31cee63ed150c7ab0aeacd.css?body=1" for ::1 at 2016-04-21 16:32:08 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:32:08 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:32:08 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 16:32:08 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:32:08 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:32:08 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:32:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:32:08 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:32:10 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:32:11 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 21ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:32:15 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:32:20 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-40a3377d07eccf243e5bb63751eb5b81e71e78a9da31cee63ed150c7ab0aeacd.css?body=1" for ::1 at 2016-04-21 16:32:20 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:32:20 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:32:20 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 16:32:20 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:32:20 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:32:20 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:32:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:32:20 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:32:29 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-40a3377d07eccf243e5bb63751eb5b81e71e78a9da31cee63ed150c7ab0aeacd.css?body=1" for ::1 at 2016-04-21 16:32:29 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 16:32:29 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:32:29 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:32:29 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:32:29 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:32:29 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:32:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:32:29 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:32:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-21 16:32:31 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.9ms) +Completed 200 OK in 17ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:32:32 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-21 16:32:33 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (8.6ms) +Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:32:33 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-21 16:32:34 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.1ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:32:35 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 29ms (Views: 27.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-21 16:32:36 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.1ms) +Completed 200 OK in 21ms (Views: 20.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 16:32:38 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-21 16:32:39 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.1ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-21 16:32:41 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.1ms) +Completed 200 OK in 23ms (Views: 22.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-21 16:33:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"completed"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 4ms (ActiveRecord: 0.5ms) + +ActiveRecord::RecordNotFound - Couldn't find Task with 'id'=completed: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasks_controller.rb:12:in `show' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/399bf70af672aab1/variables" for ::1 at 2016-04-21 16:33:47 -0700 + + +Started GET "/completed" for ::1 at 2016-04-21 16:33:50 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (5.3ms) +Completed 200 OK in 22ms (Views: 21.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 16:33:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (5.3ms) +Completed 200 OK in 32ms (Views: 30.3ms | ActiveRecord: 0.5ms) + + +Started GET "/completed" for ::1 at 2016-04-21 16:34:00 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.0ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:34:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.2ms) + + +Started GET "/completed" for ::1 at 2016-04-21 16:34:02 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.2ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 16:34:02 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.7ms) +Completed 200 OK in 21ms (Views: 20.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 16:34:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 25ms (Views: 23.8ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 16:34:05 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.3ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms) + + +Started GET "/completed" for ::1 at 2016-04-21 16:34:07 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (6.7ms) +Completed 200 OK in 21ms (Views: 20.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 16:34:08 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.2ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 16:34:22 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (5.0ms) +Completed 500 Internal Server Error in 60ms (ActiveRecord: 0.4ms) + +NameError - undefined local variable or method `tasks_add_path' for #<#:0x007fc49723e1d8> +Did you mean? tasks_path: + app/views/layouts/application.html.erb:15:in `_app_views_layouts_application_html_erb__1461478569525660580_70241122230180' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/" for ::1 at 2016-04-21 16:34:22 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 500 Internal Server Error in 47ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `tasks_add_path' for #<#:0x007fc4954e42b8> +Did you mean? tasks_path: + app/views/layouts/application.html.erb:15:in `_app_views_layouts_application_html_erb__1461478569525660580_70241122230180' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/21b3ecc4eeea23a0/variables" for ::1 at 2016-04-21 16:34:22 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:34:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 500 Internal Server Error in 57ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `tasks_add_path' for #<#:0x007fc4972c5700> +Did you mean? tasks_path: + app/views/layouts/application.html.erb:15:in `_app_views_layouts_application_html_erb__1461478569525660580_70241122230180' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/eaf68db5f1ac4879/variables" for ::1 at 2016-04-21 16:34:25 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:34:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (7.6ms) +Completed 200 OK in 44ms (Views: 41.4ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasks.self-40a3377d07eccf243e5bb63751eb5b81e71e78a9da31cee63ed150c7ab0aeacd.css?body=1" for ::1 at 2016-04-21 16:34:30 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 16:34:30 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:34:30 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:34:30 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:34:30 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:34:30 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:34:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:34:30 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:34:33 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 16:34:34 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (2.6ms) +Completed 200 OK in 23ms (Views: 22.8ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 16:34:41 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"SR3hsh/saJqJ+hM6Krj2fYCcOT8s+rJQBFhzpPeYDN5fAZwEcNl7ZMRkJGVl9+rL7KZaE/XnbxqgImDgmO3fGg==", "task"=>{"title"=>"This shit hasn't been done", "description"=>""}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "This shit hasn't been done"], ["description", ""], ["created_at", "2016-04-21 23:34:41.028352"], ["updated_at", "2016-04-21 23:34:41.028352"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 1.2ms) + + +Started GET "/" for ::1 at 2016-04-21 16:34:41 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 30ms (Views: 29.7ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/9" for ::1 at 2016-04-21 16:34:49 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"O/hLs5ND4eMOVG8LqI4fuUj8lWTcZsuM4PTJAKvz+HQt5DYF/HbyHUPKWFTnwQMPJMb2SAV7FsZEjtpExIYrsA==", "id"=>"9"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 9]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.3ms) + + +Started GET "/" for ::1 at 2016-04-21 16:34:49 -0700 +Processing by TasksController#index as HTML + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.5ms) + + +Started DELETE "/tasks/5" for ::1 at 2016-04-21 16:34:51 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"vMURFr9Zk8ZazhzgiGRrXOTLwFkQGHGhZ/+36WkAtfOq2Wyg0GyAOBdQK7/HK3fqiPGjdckFrOvDhaStBnVmNw==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 5]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 5]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-04-21 16:34:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/10" for ::1 at 2016-04-21 16:34:52 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"97vDeZpL1FvqFH+v/ESL2+RD1zmPjObnTXRD7hKVh87hp77P9X7HpaeKSPCzC5dtiHm0FVaRO63pDlCqfeBUCg==", "id"=>"10"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 10]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 10]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 2.0ms) + + +Started GET "/" for ::1 at 2016-04-21 16:34:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.2ms) + + +Started GET "/completed" for ::1 at 2016-04-21 16:34:53 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.4ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.1ms) + + +Started GET "/completed" for ::1 at 2016-04-21 16:34:57 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.2ms) +Completed 200 OK in 17ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/completed" for ::1 at 2016-04-21 16:34:58 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.0ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/completed" for ::1 at 2016-04-21 16:34:58 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.1ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 16:34:59 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.0ms) + + +Started GET "/completed" for ::1 at 2016-04-21 16:34:59 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.3ms) +Completed 200 OK in 22ms (Views: 21.3ms | ActiveRecord: 0.1ms) + + +Started GET "/completed" for ::1 at 2016-04-21 16:35:16 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.8ms) +Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-40a3377d07eccf243e5bb63751eb5b81e71e78a9da31cee63ed150c7ab0aeacd.css?body=1" for ::1 at 2016-04-21 16:35:16 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 16:35:16 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:35:16 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:35:16 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:35:16 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:35:16 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:35:16 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:35:16 -0700 + + +Started GET "/completed" for ::1 at 2016-04-21 16:35:21 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.5ms) +Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-40a3377d07eccf243e5bb63751eb5b81e71e78a9da31cee63ed150c7ab0aeacd.css?body=1" for ::1 at 2016-04-21 16:35:21 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 16:35:21 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:35:21 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:35:21 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:35:21 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:35:21 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:35:21 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:35:21 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:35:31 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.1ms) + + +Started GET "/completed" for ::1 at 2016-04-21 16:35:34 -0700 +Processing by TasksController#completed as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.2ms) +Completed 200 OK in 24ms (Views: 22.6ms | ActiveRecord: 0.3ms) + + +Started GET "/completed" for ::1 at 2016-04-21 16:35:57 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.0ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-40a3377d07eccf243e5bb63751eb5b81e71e78a9da31cee63ed150c7ab0aeacd.css?body=1" for ::1 at 2016-04-21 16:35:57 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:35:57 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:35:57 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:35:57 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:35:57 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 16:35:57 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:35:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:35:57 -0700 + + +Started GET "/completed" for ::1 at 2016-04-21 16:36:09 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.5ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-40a3377d07eccf243e5bb63751eb5b81e71e78a9da31cee63ed150c7ab0aeacd.css?body=1" for ::1 at 2016-04-21 16:36:09 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 16:36:09 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:36:09 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:36:09 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:36:09 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:36:09 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:36:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:36:09 -0700 + + +Started GET "/completed" for ::1 at 2016-04-21 16:36:19 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.2ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-40a3377d07eccf243e5bb63751eb5b81e71e78a9da31cee63ed150c7ab0aeacd.css?body=1" for ::1 at 2016-04-21 16:36:19 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 16:36:19 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:36:19 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:36:19 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:36:19 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:36:19 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:36:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:36:19 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:36:22 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 16:36:29 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-40a3377d07eccf243e5bb63751eb5b81e71e78a9da31cee63ed150c7ab0aeacd.css?body=1" for ::1 at 2016-04-21 16:36:29 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 16:36:29 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:36:29 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:36:29 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:36:29 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:36:29 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:36:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:36:29 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:38:29 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 22ms (Views: 21.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 16:38:30 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (2.1ms) +Completed 200 OK in 34ms (Views: 32.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 16:38:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 16:38:31 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.9ms) +Completed 200 OK in 29ms (Views: 28.1ms | ActiveRecord: 0.0ms) + + +Started GET "/completed" for ::1 at 2016-04-21 16:38:32 -0700 +Processing by TasksController#completed as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (5.2ms) +Completed 200 OK in 26ms (Views: 24.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 16:38:33 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.5ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 16:38:33 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 16:48:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:49:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:49:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:49:03 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:50:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 16:50:55 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (2.1ms) +Completed 200 OK in 22ms (Views: 21.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 16:51:02 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (4.4ms) +Completed 200 OK in 21ms (Views: 20.3ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-40a3377d07eccf243e5bb63751eb5b81e71e78a9da31cee63ed150c7ab0aeacd.css?body=1" for ::1 at 2016-04-21 16:51:02 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:51:02 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:51:02 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 16:51:02 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:51:02 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:51:02 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:51:02 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:51:02 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:51:03 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 16:51:04 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.6ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.0ms) + + +Started GET "/completed" for ::1 at 2016-04-21 16:51:05 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.4ms) +Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 16:51:06 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2016-04-21 16:51:07 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2016-04-21 16:51:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-40a3377d07eccf243e5bb63751eb5b81e71e78a9da31cee63ed150c7ab0aeacd.css?body=1" for ::1 at 2016-04-21 16:51:31 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:51:31 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:51:31 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:51:31 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 16:51:31 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:51:31 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:51:31 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:51:31 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:51:31 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2016-04-21 16:51:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:51:50 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2016-04-21 16:51:51 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:52:03 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/completed" for ::1 at 2016-04-21 16:52:04 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.2ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 16:52:04 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 16:52:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:52:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 86ms (Views: 84.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:52:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:52:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:52:48 -0700 + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-21 16:52:48 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 16:52:48 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:52:48 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:52:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:52:48 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:52:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:52:49 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/3" for ::1 at 2016-04-21 16:52:49 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/completed" for ::1 at 2016-04-21 16:52:59 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.0ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2016-04-21 16:53:04 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 14ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:53:07 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/24" for ::1 at 2016-04-21 16:53:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"24"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 24]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:53:14 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2016-04-21 16:53:15 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:58:47 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 16:58:50 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.6ms) +Completed 200 OK in 15ms (Views: 15.0ms | ActiveRecord: 0.0ms) + + +Started GET "/completed" for ::1 at 2016-04-21 16:58:50 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.3ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 16:58:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/completed" for ::1 at 2016-04-21 16:58:52 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.0ms) +Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 16:58:52 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.7ms) +Completed 200 OK in 27ms (Views: 26.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 16:58:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/completed" for ::1 at 2016-04-21 16:58:55 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.1ms) +Completed 200 OK in 24ms (Views: 22.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 16:58:57 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.2ms) +Completed 200 OK in 15ms (Views: 15.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 16:58:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/completed" for ::1 at 2016-04-21 16:58:58 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.1ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 16:58:59 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.1ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 16:59:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 27ms (Views: 25.7ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 16:59:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 16:59:01 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.2ms) +Completed 200 OK in 22ms (Views: 21.6ms | ActiveRecord: 0.0ms) + + +Started GET "/completed" for ::1 at 2016-04-21 16:59:01 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.0ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:59:02 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 21:29:31 -0700 +Processing by TasksController#index as HTML + Task Load (1.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (14.3ms) +Completed 200 OK in 93ms (Views: 82.0ms | ActiveRecord: 1.2ms) + + +Started GET "/" for ::1 at 2016-04-21 21:29:33 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 27ms (Views: 26.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 21:29:34 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (5.3ms) +Completed 200 OK in 37ms (Views: 36.7ms | ActiveRecord: 0.0ms) + + +Started GET "/completed" for ::1 at 2016-04-21 21:29:35 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.5ms) +Completed 200 OK in 22ms (Views: 21.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 21:29:36 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.8ms) +Completed 200 OK in 20ms (Views: 19.9ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 21:29:36 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 21:29:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2016-04-21 21:30:04 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 21:30:07 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 61ms (Views: 60.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/24" for ::1 at 2016-04-21 21:30:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"24"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 24]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 21:30:11 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 27ms (Views: 25.5ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/24" for ::1 at 2016-04-21 21:30:16 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"zFKC9mNjUsUnV1sEwZlFsaAdaA6vIEFjK04t7lWMgTDaTv9ADFZBO2rJbFuO1lkHzCcLInY9nCmPND6qOvlS9A==", "id"=>"24"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 24]] +  (0.1ms) begin transaction + SQL (0.5ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 24]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.3ms) + + +Started GET "/" for ::1 at 2016-04-21 21:30:16 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 21:30:20 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.3ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 21:30:29 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"6E8FaY/FSl793eWJZ08STL9VanzyLabZJCcndwIxu1X+U3jf4PBZoLBD0tYoAA76028JUCswe5OAXTQzbURokQ==", "task"=>{"title"=>"test", "description"=>"hi thar"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "test"], ["description", "hi thar"], ["created_at", "2016-04-22 04:30:29.972629"], ["updated_at", "2016-04-22 04:30:29.972629"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-21 21:30:29 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/25" for ::1 at 2016-04-21 21:30:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"25"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 25]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 21:30:34 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-21 21:30:36 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.3ms) +Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 21:32:00 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"UbirLTmumkIBi97AX1htvcG/ef1nPMqDsSEpRErCKfhHpNabVpuJvEwV6Z8QF3ELrYUa0b4hF8kVWzoAJbf6PA==", "task"=>{"title"=>"Engage wifey in carnal knowledge", "description"=>"Fuck her in the ass and then creampie her."}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Engage wifey in carnal knowledge"], ["description", "Fuck her in the ass and then creampie her."], ["created_at", "2016-04-22 04:32:00.591254"], ["updated_at", "2016-04-22 04:32:00.591254"]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-04-21 21:32:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/26" for ::1 at 2016-04-21 21:32:07 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"26"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 26]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/26" for ::1 at 2016-04-21 21:32:14 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"AhbOM4PS6e4RkuB33spxLcayMfFCnvMu82xn+wQ//PIUCrOF7Of6EFwM1yiRhW2bqohS3ZuDLmRXFnS/a0ovNg==", "id"=>"26"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 26]] +  (0.1ms) begin transaction + SQL (0.8ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 26]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 2.4ms) + + +Started GET "/" for ::1 at 2016-04-21 21:32:14 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/25" for ::1 at 2016-04-21 21:32:19 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"Fwk7RhIai+dmZ1dT92xX4ar9jHOfnfObWdHQ0zhM1RgBFUbwfS+YGSv5YAy4I0tXxsfvX0aALtH9q8OXVzkG3A==", "id"=>"25"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 25]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-21 21:32:19 -0700"], ["updated_at", "2016-04-22 04:32:19.815144"], ["id", 25]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-21 21:32:19 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 14ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started GET "/completed" for ::1 at 2016-04-21 21:32:21 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.4ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/22" for ::1 at 2016-04-21 21:32:30 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"22"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 22]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/25" for ::1 at 2016-04-21 21:32:43 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"FCz5Op1DpyhSy5BRUg8Hc4F0+lu+dLyI5vRFYB2tPxkCMISM8na01h9Vpw4dQBvF7U6Zd2dpYcJCjlYkctjs3Q==", "id"=>"25"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 25]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 25]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-04-21 21:32:43 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 21:32:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 21:35:29 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 21:35:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 21:35:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 21:35:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 21:35:31 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 21:35:31 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 09:21:40 -0700 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 325ms (Views: 313.6ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-22 09:21:40 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 32ms (Views: 31.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2016-04-22 09:21:44 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 21ms (Views: 13.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-22 09:21:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/completed" for ::1 at 2016-04-22 09:21:50 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.6ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6" for ::1 at 2016-04-22 09:21:55 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 09:21:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 09:22:33 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (15.7ms) +Completed 200 OK in 30ms (Views: 29.1ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-22 09:22:39 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"cHsof/+4YqDZhgN7J6l5XSURToUtjO1zEqa1ECs9VnT80Pg5VjweU1UBkuLo/72BVeP9V6S9P6CNGqQEUy/B4Q==", "task"=>{"title"=>"Make another feature...", "description"=>"ughh"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.7ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Make another feature..."], ["description", "ughh"], ["created_at", "2016-04-22 16:22:39.669572"], ["updated_at", "2016-04-22 16:22:39.669572"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 1.4ms) + + +Started GET "/" for ::1 at 2016-04-22 09:22:39 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 09:22:41 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (2.3ms) +Completed 200 OK in 19ms (Views: 18.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-22 09:22:54 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/completed" for ::1 at 2016-04-22 09:22:55 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.1ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/22" for ::1 at 2016-04-22 09:22:59 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"22"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 22]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 09:23:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 09:29:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (5.7ms) +Completed 200 OK in 34ms (Views: 31.8ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-22 09:29:45 -0700 + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-22 09:29:45 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 09:29:45 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 09:29:45 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 09:29:45 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 09:29:45 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 09:29:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 09:29:45 -0700 + + +Started GET "/" for ::1 at 2016-04-22 09:29:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-22 09:29:46 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 09:29:46 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-22 09:29:46 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 09:29:46 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 09:29:46 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 09:29:46 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 09:29:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 09:29:46 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:15:39 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 40ms (Views: 37.4ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-22 11:15:39 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 11:15:39 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 11:15:39 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-22 11:15:39 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 11:15:39 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:15:39 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:15:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 11:15:39 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:15:40 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/3" for ::1 at 2016-04-22 11:15:41 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"rVssm4PknKHowkQPW9bVrsS3HGo0cXYWn0W64RgaNYoh8PzdKmDgUmRF1ZaUgBFytEWvuL1ApMUA+av1YAiiHw==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-22 11:15:41 -0700"], ["updated_at", "2016-04-22 18:15:41.986559"], ["id", 3]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.0ms) + + +Started GET "/" for ::1 at 2016-04-22 11:15:41 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/completed" for ::1 at 2016-04-22 11:15:43 -0700 + +ActionController::RoutingError (No route matches [GET] "/completed"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (69.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.1ms) + + +Started GET "/completed" for ::1 at 2016-04-22 11:15:43 -0700 + +ActionController::RoutingError (No route matches [GET] "/completed"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.7ms) + + +Started GET "/" for ::1 at 2016-04-22 11:16:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 11:16:06 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.3ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 11:16:06 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.3ms) +Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 11:16:07 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 11:16:08 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.4ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 11:16:26 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 25ms (Views: 23.0ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-22 11:19:18 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 22ms (Views: 21.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 11:19:18 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 11:19:19 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.5ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-22 11:19:20 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 11:19:20 -0700 +Processing by TasksController#completed as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.6ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 11:19:21 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-22 11:19:22 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/27" for ::1 at 2016-04-22 11:19:23 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 27]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 11:19:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 11:19:27 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.7ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-22 11:19:37 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"54NveM4F6pcydH3xcGHELfwJtt+xqPuCxoTk5QSVzlxrKL8+Z4GWZL7z7Gi/NwDxjPsFDTiZKVFZOPXxfIdZyQ==", "task"=>{"title"=>"Edit a task", "description"=>"figure it out"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Edit a task"], ["description", "figure it out"], ["created_at", "2016-04-22 18:19:37.377710"], ["updated_at", "2016-04-22 18:19:37.377710"]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-04-22 11:19:37 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 11:19:38 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.0ms) +Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-22 11:19:42 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"U3bp/De5L5gL+cxpl6DuOYcVG5IBethv71h53hLfDvXf3Tm6nj1Ta4d+XfBY9irl9+eoQIhLCrxw5GjKas2ZYA==", "task"=>{"title"=>"test", "description"=>"testtest"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "test"], ["description", "testtest"], ["created_at", "2016-04-22 18:19:42.523929"], ["updated_at", "2016-04-22 18:19:42.523929"]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/" for ::1 at 2016-04-22 11:19:42 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 11:23:15 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (49.4ms) +Completed 500 Internal Server Error in 56ms (ActiveRecord: 0.6ms) + +NameError - undefined local variable or method `task_edit_path' for #<#:0x007fdfa9cea820> +Did you mean? tasks_edit_path + task_path + tasks_add_path: + app/views/tasks/index.html.erb:27:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299301660600' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299301660600' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/9c373e6e2eb61dd0/variables" for ::1 at 2016-04-22 11:23:15 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:23:16 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (39.4ms) +Completed 500 Internal Server Error in 45ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `task_edit_path' for #<#:0x007fdfa9931ee0> +Did you mean? tasks_edit_path + task_path + tasks_add_path: + app/views/tasks/index.html.erb:27:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299301660600' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299301660600' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/affdbc112cc73ce7/variables" for ::1 at 2016-04-22 11:23:16 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:23:39 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (5.4ms) +Completed 200 OK in 41ms (Views: 38.4ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-22 11:23:39 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 11:23:39 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-22 11:23:39 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 11:23:39 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:23:39 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:23:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 11:23:39 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 11:23:39 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 11:23:39 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:23:39 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:23:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 11:23:39 -0700 + + +Started GET "/tasks/edit" for ::1 at 2016-04-22 11:23:40 -0700 +Processing by TasksController#edit as HTML + Rendered tasks/edit.html.erb within layouts/application (0.3ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/edit" for ::1 at 2016-04-22 11:23:44 -0700 +Processing by TasksController#edit as HTML + Rendered tasks/edit.html.erb within layouts/application (0.0ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/edit" for ::1 at 2016-04-22 11:23:47 -0700 +Processing by TasksController#edit as HTML + Rendered tasks/edit.html.erb within layouts/application (0.0ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-22 11:26:10 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 32ms (Views: 31.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 11:26:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/edit" for ::1 at 2016-04-22 11:26:16 -0700 +Processing by TasksController#edit as HTML + Rendered tasks/edit.html.erb within layouts/application (3.6ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `[]' for nil:NilClass: + app/views/tasks/edit.html.erb:5:in `_app_views_tasks_edit_html_erb___1033091377962916135_70299262109780' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/21ed883b9467eb75/variables" for ::1 at 2016-04-22 11:26:16 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:27:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/edit/:id" for ::1 at 2016-04-22 11:27:02 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/edit/:id"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.6ms) + + +Started GET "/" for ::1 at 2016-04-22 11:27:31 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 23ms (Views: 20.9ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/edit/:id" for ::1 at 2016-04-22 11:27:33 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>":id"} + Rendered tasks/edit.html.erb within layouts/application (2.8ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `[]' for nil:NilClass: + app/views/tasks/edit.html.erb:5:in `_app_views_tasks_edit_html_erb___1033091377962916135_70299262109780' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/05c9982ba78190c8/variables" for ::1 at 2016-04-22 11:27:33 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:27:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/edit/(task.id)" for ::1 at 2016-04-22 11:27:57 -0700 +Processing by TasksController#edit as + Parameters: {"id"=>"(task"} + Rendered tasks/edit.html.erb within layouts/application (11.8ms) +Completed 500 Internal Server Error in 23ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `[]' for nil:NilClass: + app/views/tasks/edit.html.erb:5:in `_app_views_tasks_edit_html_erb___1033091377962916135_70299252501520' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/5895cd9d6a8acf18/variables" for ::1 at 2016-04-22 11:27:57 -0700 + + +Started GET "/tasks/edit/(task.id)" for ::1 at 2016-04-22 11:28:20 -0700 +Processing by TasksController#edit as + Parameters: {"id"=>"(task"} + Rendered tasks/edit.html.erb within layouts/application (11.7ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `[]' for nil:NilClass: + app/views/tasks/edit.html.erb:5:in `_app_views_tasks_edit_html_erb___1033091377962916135_70299252501520' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/95c8861bf119ef24/variables" for ::1 at 2016-04-22 11:28:20 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:28:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 22ms (Views: 20.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/edit/" for ::1 at 2016-04-22 11:28:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"edit"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find Task with 'id'=edit: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasks_controller.rb:12:in `show' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/33ced0ac25037437/variables" for ::1 at 2016-04-22 11:28:26 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:28:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (24.3ms) +Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `tasks_edit_path' for #<#:0x007fdfa9c93020> +Did you mean? tasks_add_path: + app/views/tasks/index.html.erb:27:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299301482020' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299301482020' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/8128c7b9c554d1a2/variables" for ::1 at 2016-04-22 11:28:52 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:28:54 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (21.8ms) +Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `tasks_edit_path' for #<#:0x007fdfa498aa40> +Did you mean? tasks_add_path: + app/views/tasks/index.html.erb:27:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299301482020' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299301482020' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b80f3c0c4295bebb/variables" for ::1 at 2016-04-22 11:28:54 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:29:47 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/edit/task.id" for ::1 at 2016-04-22 11:29:48 -0700 +Processing by TasksController#edit as + Parameters: {"id"=>"task"} + Rendered tasks/edit.html.erb within layouts/application (17.3ms) +Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `[]' for nil:NilClass: + app/views/tasks/edit.html.erb:5:in `_app_views_tasks_edit_html_erb___1033091377962916135_70299252501520' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/2824c819474a1d65/variables" for ::1 at 2016-04-22 11:29:48 -0700 + + +Started GET "/tasks/edit/task.id" for ::1 at 2016-04-22 11:29:58 -0700 +Processing by TasksController#edit as + Parameters: {"id"=>"task"} + Rendered tasks/edit.html.erb within layouts/application (25.5ms) +Completed 500 Internal Server Error in 37ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `[]' for nil:NilClass: + app/views/tasks/edit.html.erb:5:in `_app_views_tasks_edit_html_erb___1033091377962916135_70299252501520' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4b99d0029eed9fee/variables" for ::1 at 2016-04-22 11:29:58 -0700 + + +Started GET "/tasks/edit/task.id" for ::1 at 2016-04-22 11:29:59 -0700 +Processing by TasksController#edit as + Parameters: {"id"=>"task"} + Rendered tasks/edit.html.erb within layouts/application (22.2ms) +Completed 500 Internal Server Error in 37ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `[]' for nil:NilClass: + app/views/tasks/edit.html.erb:5:in `_app_views_tasks_edit_html_erb___1033091377962916135_70299252501520' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c3c2517ffc5c2262/variables" for ::1 at 2016-04-22 11:29:59 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:30:18 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected $undefined, expecting ')' +...);@output_buffer.safe_append='\', +... ^ +/Users/annamason/C5/projects/TaskListRails/task-list/app/views/tasks/index.html.erb:32: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/annamason/C5/projects/TaskListRails/task-list/app/views/tasks/index.html.erb:36: syntax error, unexpected keyword_ensure, expecting ')' +/Users/annamason/C5/projects/TaskListRails/task-list/app/views/tasks/index.html.erb:38: syntax error, unexpected keyword_end, expecting ')': + app/views/tasks/index.html.erb:27:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/2cfd02e2918b38cb/variables" for ::1 at 2016-04-22 11:30:18 -0700 + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + + +Started GET "/" for ::1 at 2016-04-22 11:30:29 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected $undefined, expecting ')' +...);@output_buffer.safe_append='\', +... ^ +/Users/annamason/C5/projects/TaskListRails/task-list/app/views/tasks/index.html.erb:32: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/annamason/C5/projects/TaskListRails/task-list/app/views/tasks/index.html.erb:36: syntax error, unexpected keyword_ensure, expecting ')' +/Users/annamason/C5/projects/TaskListRails/task-list/app/views/tasks/index.html.erb:38: syntax error, unexpected keyword_end, expecting ')': + app/views/tasks/index.html.erb:27:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4ed5f2a5802236b0/variables" for ::1 at 2016-04-22 11:30:29 -0700 + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + + +Started GET "/" for ::1 at 2016-04-22 11:30:34 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-22 11:30:34 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-22 11:30:34 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 11:30:34 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 11:30:34 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:30:34 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 11:30:34 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:30:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 11:30:34 -0700 + + +Started GET "/tasks/edit/task.id" for ::1 at 2016-04-22 11:30:36 -0700 +Processing by TasksController#edit as + Parameters: {"id"=>"task"} + Rendered tasks/edit.html.erb within layouts/application (11.1ms) +Completed 500 Internal Server Error in 23ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `[]' for nil:NilClass: + app/views/tasks/edit.html.erb:5:in `_app_views_tasks_edit_html_erb___1033091377962916135_70299252501520' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c2332f37ae34c615/variables" for ::1 at 2016-04-22 11:30:37 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:31:14 -0700 +Processing by TasksController#index as HTML + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (5.7ms) +Completed 200 OK in 23ms (Views: 21.3ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-22 11:31:14 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-22 11:31:14 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:31:14 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 11:31:14 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 11:31:14 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 11:31:14 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:31:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 11:31:14 -0700 + + +Started GET "/tasks/27" for ::1 at 2016-04-22 11:31:16 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 27]] + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 11:32:36 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (23.4ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `tasks_edit_path' for #<#:0x007fdfa3f61a78> +Did you mean? tasks_add_path: + app/views/tasks/index.html.erb:27:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299252622100' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299252622100' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/50ec7e8717bf67fc/variables" for ::1 at 2016-04-22 11:32:36 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:32:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (36.0ms) +Completed 500 Internal Server Error in 42ms (ActiveRecord: 0.3ms) + +NoMethodError - undefined method `task_update_path' for #<#:0x007fdfa7eacdb8> +Did you mean? task_path: + app/views/tasks/index.html.erb:27:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299285794620' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299285794620' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4455a2ef0740be42/variables" for ::1 at 2016-04-22 11:32:48 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:32:49 -0700 +Processing by TasksController#index as HTML + Task Load (5.9ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (28.1ms) +Completed 500 Internal Server Error in 31ms (ActiveRecord: 5.9ms) + +NoMethodError - undefined method `task_update_path' for #<#:0x007fdfaa150950> +Did you mean? task_path: + app/views/tasks/index.html.erb:27:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299285794620' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299285794620' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/859f7b9612e860d2/variables" for ::1 at 2016-04-22 11:32:49 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:34:01 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected ':', expecting ')' + method: :get );@output_buffer.safe_append=' + ^: + app/views/tasks/index.html.erb:28:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c86a7e32107d6212/variables" for ::1 at 2016-04-22 11:34:01 -0700 + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + + +Started GET "/" for ::1 at 2016-04-22 11:34:08 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected ':', expecting ')' + method: :get );@output_buffer.safe_append=' + ^: + app/views/tasks/index.html.erb:28:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/08c74391915343d3/variables" for ::1 at 2016-04-22 11:34:08 -0700 + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + + +Started GET "/" for ::1 at 2016-04-22 11:34:10 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected ':', expecting ')' + method: :get );@output_buffer.safe_append=' + ^: + app/views/tasks/index.html.erb:28:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ca6b6dff8384664b/variables" for ::1 at 2016-04-22 11:34:10 -0700 + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + + +Started GET "/" for ::1 at 2016-04-22 11:34:31 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 21ms (Views: 20.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-22 11:34:31 -0700 + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-22 11:34:31 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 11:34:31 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 11:34:31 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:34:31 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:34:31 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 11:34:31 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 11:34:31 -0700 + + +Started GET "/tasks/edit/task.id" for ::1 at 2016-04-22 11:34:33 -0700 +Processing by TasksController#edit as + Parameters: {"id"=>"task"} + Rendered tasks/edit.html.erb within layouts/application (10.9ms) +Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `[]' for nil:NilClass: + app/views/tasks/edit.html.erb:5:in `_app_views_tasks_edit_html_erb___1033091377962916135_70299252501520' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/cd670375c8a9bab1/variables" for ::1 at 2016-04-22 11:34:33 -0700 + + +Started POST "/__better_errors/cd670375c8a9bab1/eval" for ::1 at 2016-04-22 11:34:40 -0700 + + +Started GET "/tasks/edit/task.id" for ::1 at 2016-04-22 11:35:14 -0700 +Processing by TasksController#edit as + Parameters: {"id"=>"task"} + Rendered tasks/edit.html.erb within layouts/application (0.3ms) +Completed 200 OK in 21ms (Views: 20.5ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-22 11:35:14 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-22 11:35:14 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 11:35:14 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 11:35:14 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:35:14 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 11:35:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 11:35:14 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:35:14 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:35:16 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 11:35:16 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/edit/task.id" for ::1 at 2016-04-22 11:35:18 -0700 +Processing by TasksController#edit as + Parameters: {"id"=>"task"} + Rendered tasks/edit.html.erb within layouts/application (0.0ms) +Completed 200 OK in 22ms (Views: 21.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-22 11:35:19 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 25ms (Views: 24.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/edit/task.id" for ::1 at 2016-04-22 11:35:20 -0700 +Processing by TasksController#edit as + Parameters: {"id"=>"task"} + Rendered tasks/edit.html.erb within layouts/application (0.0ms) +Completed 200 OK in 26ms (Views: 26.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-22 11:35:22 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 31ms (Views: 30.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/edit/task.id" for ::1 at 2016-04-22 11:35:23 -0700 +Processing by TasksController#edit as + Parameters: {"id"=>"task"} + Rendered tasks/edit.html.erb within layouts/application (0.0ms) +Completed 200 OK in 23ms (Views: 22.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-22 11:35:24 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/edit/task.id" for ::1 at 2016-04-22 11:35:27 -0700 +Processing by TasksController#edit as + Parameters: {"id"=>"task"} + Rendered tasks/edit.html.erb within layouts/application (0.0ms) +Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-22 11:35:40 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/edit/(task.id)" for ::1 at 2016-04-22 11:35:41 -0700 +Processing by TasksController#edit as + Parameters: {"id"=>"(task"} + Rendered tasks/edit.html.erb within layouts/application (0.0ms) +Completed 200 OK in 23ms (Views: 22.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-22 11:39:31 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-22 11:39:31 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 11:39:31 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-22 11:39:31 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 11:39:31 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 11:39:31 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:39:31 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:39:31 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 11:39:31 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:43:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (5.3ms) +Completed 200 OK in 22ms (Views: 19.5ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/edit/(task.id)" for ::1 at 2016-04-22 11:43:07 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/edit/(task.id)"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (36.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (82.9ms) + + +Started GET "/tasks/edit/(task.id)" for ::1 at 2016-04-22 11:43:07 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/edit/(task.id)"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (56.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (82.8ms) + + +Started GET "/tasks/edit/(task.id)" for ::1 at 2016-04-22 11:43:30 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/edit/(task.id)"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (61.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.3ms) + + +Started GET "/tasks/edit/" for ::1 at 2016-04-22 11:43:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"edit"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 2ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find Task with 'id'=edit: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasks_controller.rb:12:in `show' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/0ce9b3f1d5980fbe/variables" for ::1 at 2016-04-22 11:43:32 -0700 + + +Started GET "/tasks" for ::1 at 2016-04-22 11:43:35 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (25.2ms) +Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `edit_task_path' for #<#:0x007fdfa9ab1040>: + app/views/tasks/index.html.erb:29:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299300485500' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299300485500' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a1021a6ba9a0b14b/variables" for ::1 at 2016-04-22 11:43:35 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:43:35 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (25.6ms) +Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `edit_task_path' for #<#:0x007fdfa3da5d10>: + app/views/tasks/index.html.erb:29:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299300485500' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299300485500' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/de4695db0bfb648b/variables" for ::1 at 2016-04-22 11:43:35 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:43:41 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (22.6ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `edit_task_path' for #<#:0x007fdfa9c494e8>: + app/views/tasks/index.html.erb:29:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299300485500' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299300485500' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/7e0bb51526a23b52/variables" for ::1 at 2016-04-22 11:43:41 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:44:40 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (22.3ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `edit_task_path' for #<#:0x007fdfa9d63018>: + app/views/tasks/index.html.erb:29:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299301907400' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299301907400' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/0369509f568056a3/variables" for ::1 at 2016-04-22 11:44:40 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:44:41 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (27.1ms) +Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `edit_task_path' for #<#:0x007fdfa3f2b040>: + app/views/tasks/index.html.erb:29:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299301907400' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299301907400' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/0369509f568056a3/eval" for ::1 at 2016-04-22 11:44:41 -0700 + + +Started POST "/__better_errors/d2ac8803d7130614/variables" for ::1 at 2016-04-22 11:44:41 -0700 + + +Started POST "/__better_errors/d2ac8803d7130614/eval" for ::1 at 2016-04-22 11:45:41 -0700 + + +Started POST "/__better_errors/d2ac8803d7130614/eval" for ::1 at 2016-04-22 11:45:45 -0700 + + +Started POST "/__better_errors/d2ac8803d7130614/eval" for ::1 at 2016-04-22 11:45:50 -0700 + + +Started POST "/__better_errors/d2ac8803d7130614/eval" for ::1 at 2016-04-22 11:45:57 -0700 + + +Started POST "/__better_errors/d2ac8803d7130614/eval" for ::1 at 2016-04-22 11:46:03 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:48:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (6.1ms) +Completed 200 OK in 23ms (Views: 20.9ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-22 11:48:00 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 11:48:00 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:48:00 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-22 11:48:00 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 11:48:00 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 11:48:00 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:48:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 11:48:00 -0700 + + +Started GET "/tasks/edit/task.id" for ::1 at 2016-04-22 11:48:04 -0700 +Processing by TasksController#edit as + Parameters: {"id"=>"task"} + Rendered tasks/edit.html.erb within layouts/application (0.0ms) +Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-22 11:51:29 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 24ms (Views: 21.6ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/edit/task.id" for ::1 at 2016-04-22 11:51:31 -0700 +Processing by TasksController#edit as + Parameters: {"id"=>"task"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 2ms (ActiveRecord: 0.2ms) + +ActiveRecord::RecordNotFound - Couldn't find Task with 'id'=task: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasks_controller.rb:16:in `edit' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e2ad666bdf8e3321/variables" for ::1 at 2016-04-22 11:51:31 -0700 + + +Started GET "/tasks/27" for ::1 at 2016-04-22 11:51:36 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 27]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 23ms (Views: 22.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/27" for ::1 at 2016-04-22 11:51:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 27]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 11:53:40 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (21.6ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `edit_task_path' for #<#:0x007fdfaa18ba28>: + app/views/tasks/index.html.erb:29:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299304088400' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299304088400' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/199f2731d8122ddb/variables" for ::1 at 2016-04-22 11:53:40 -0700 + + +Started POST "/__better_errors/199f2731d8122ddb/eval" for ::1 at 2016-04-22 11:53:51 -0700 + + +Started POST "/__better_errors/199f2731d8122ddb/eval" for ::1 at 2016-04-22 11:53:56 -0700 + + +Started POST "/__better_errors/199f2731d8122ddb/eval" for ::1 at 2016-04-22 11:54:00 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:59:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (21.3ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `edit_task_path' for #<#:0x007fdfa9ba0370>: + app/views/tasks/index.html.erb:29:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299303548540' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299303548540' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/407070dddf38c823/variables" for ::1 at 2016-04-22 11:59:54 -0700 + + +Started GET "/" for ::1 at 2016-04-22 12:02:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (40.1ms) +Completed 500 Internal Server Error in 43ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `edit_task_path' for #<#:0x007fdfa64e2540>: + app/views/tasks/index.html.erb:29:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299272321200' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299272321200' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a4323ae5af7ac096/variables" for ::1 at 2016-04-22 12:02:48 -0700 + + +Started GET "/" for ::1 at 2016-04-22 12:02:50 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (28.7ms) +Completed 500 Internal Server Error in 32ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `edit_task_path' for #<#:0x007fdfa9c0ba80>: + app/views/tasks/index.html.erb:29:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299272321200' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299272321200' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c0051a0494efc34d/variables" for ::1 at 2016-04-22 12:02:50 -0700 + + +Started GET "/" for ::1 at 2016-04-22 12:03:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (23.3ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `edit_task_path' for #<#:0x007fdfa9b4c7e8>: + app/views/tasks/index.html.erb:29:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299301009940' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299301009940' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/cab52e0aa5d4830a/variables" for ::1 at 2016-04-22 12:03:05 -0700 + + +Started GET "/" for ::1 at 2016-04-22 12:06:27 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (21.1ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `edit_task_path' for #<#:0x007fdfa3d3d878>: + app/views/tasks/index.html.erb:29:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299301009940' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299301009940' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/6a0328bc5a71a0f5/variables" for ::1 at 2016-04-22 12:06:27 -0700 + + +Started GET "/" for ::1 at 2016-04-22 12:06:28 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (24.6ms) +Completed 500 Internal Server Error in 32ms (ActiveRecord: 0.3ms) + +NoMethodError - undefined method `edit_task_path' for #<#:0x007fdfaa221c58>: + app/views/tasks/index.html.erb:29:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299301009940' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299301009940' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/de5b0c3fdc1cfdc8/variables" for ::1 at 2016-04-22 12:06:28 -0700 + + +Started GET "/" for ::1 at 2016-04-22 12:09:27 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (32.2ms) +Completed 500 Internal Server Error in 40ms (ActiveRecord: 0.7ms) + +NoMethodError - undefined method `edit_task' for #<#:0x007fdfa662a2b8> +Did you mean? edit_task_url: + app/views/tasks/index.html.erb:29:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299272894660' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299272894660' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/afefeab51004e48f/variables" for ::1 at 2016-04-22 12:09:27 -0700 + + +Started GET "/" for ::1 at 2016-04-22 12:09:28 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (25.6ms) +Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `edit_task' for #<#:0x007fdfa9c6acb0> +Did you mean? edit_task_url: + app/views/tasks/index.html.erb:29:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299272894660' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299272894660' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/7490e2c09fbf7636/variables" for ::1 at 2016-04-22 12:09:28 -0700 + + +Started GET "/" for ::1 at 2016-04-22 12:09:29 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (24.9ms) +Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `edit_task' for #<#:0x007fdfaa04b938> +Did you mean? edit_task_url: + app/views/tasks/index.html.erb:29:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299272894660' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299272894660' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1ed2e83ea87e1ec1/variables" for ::1 at 2016-04-22 12:09:29 -0700 + + +Started GET "/" for ::1 at 2016-04-22 12:09:44 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (22.3ms) +Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.5ms) + +NoMethodError - undefined method `edit_task' for #<#:0x007fdfa984a090> +Did you mean? edit_task_url: + app/views/tasks/index.html.erb:29:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299272894660' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299272894660' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/bec37bb47e45b62d/variables" for ::1 at 2016-04-22 12:09:44 -0700 + + +Started GET "/" for ::1 at 2016-04-22 12:09:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (21.5ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `edit_task' for #<#:0x007fdfa983a3e8> +Did you mean? edit_task_url: + app/views/tasks/index.html.erb:29:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299272894660' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299272894660' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/22bc2788085ab51f/variables" for ::1 at 2016-04-22 12:09:45 -0700 + + +Started GET "/" for ::1 at 2016-04-22 12:10:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (18.3ms) +Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `edit_task' for #<#:0x007fdfa642b660> +Did you mean? edit_task_url: + app/views/tasks/index.html.erb:29:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299272894660' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299272894660' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/5b49ee182d2c939d/variables" for ::1 at 2016-04-22 12:10:13 -0700 + + +Started GET "/" for ::1 at 2016-04-22 12:10:39 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (24.0ms) +Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.5ms) + +NoMethodError - undefined method `edit_tasks' for #<#:0x007fdfaa0a1d10> +Did you mean? edit_tasks_url: + app/views/tasks/index.html.erb:29:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299303609300' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299303609300' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/0bc8c7cbc8aa3569/variables" for ::1 at 2016-04-22 12:10:39 -0700 + + +Started GET "/" for ::1 at 2016-04-22 12:10:40 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (20.3ms) +Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `edit_tasks' for #<#:0x007fdfa9b59d80> +Did you mean? edit_tasks_url: + app/views/tasks/index.html.erb:29:in `block in _app_views_tasks_index_html_erb__2458151770032779061_70299303609300' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:14:in `_app_views_tasks_index_html_erb__2458151770032779061_70299303609300' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/0ca0c50fd3371c79/variables" for ::1 at 2016-04-22 12:10:40 -0700 + + +Started GET "/" for ::1 at 2016-04-22 12:11:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-22 12:11:13 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 12:11:13 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-22 12:11:13 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 12:11:13 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 12:11:13 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 12:11:13 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 12:11:13 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 12:11:13 -0700 + + +Started GET "/tasks/27/edit" for ::1 at 2016-04-22 12:11:14 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 27]] + Rendered tasks/edit.html.erb within layouts/application (0.4ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27/edit" for ::1 at 2016-04-22 12:11:27 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 27]] + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/28/edit" for ::1 at 2016-04-22 12:11:32 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 28]] + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/29/edit" for ::1 at 2016-04-22 12:11:34 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 12:11:37 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 12:12:22 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.8ms) +Completed 200 OK in 21ms (Views: 20.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 12:12:23 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (4.0ms) +Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 12:12:24 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 12:12:28 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.3ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 12:12:29 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (2.8ms) +Completed 200 OK in 23ms (Views: 22.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-22 12:12:31 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 22ms (Views: 21.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/27/edit" for ::1 at 2016-04-22 12:12:41 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 27]] + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/27" for ::1 at 2016-04-22 12:12:46 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 27]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 12:12:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/27" for ::1 at 2016-04-22 12:13:00 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 27]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 12:13:02 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/28" for ::1 at 2016-04-22 12:13:03 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 28]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 12:13:18 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/27" for ::1 at 2016-04-22 12:13:19 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 27]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 12:19:21 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/27/edit" for ::1 at 2016-04-22 12:19:22 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 27]] + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 12:19:24 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 26ms (Views: 24.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/28/edit" for ::1 at 2016-04-22 12:19:25 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 28]] + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/28/edit" for ::1 at 2016-04-22 12:19:34 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 28]] + Rendered tasks/edit.html.erb within layouts/application (0.3ms) +Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-22 12:19:34 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-22 12:19:34 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 12:19:34 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 12:19:34 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 12:19:34 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 12:19:34 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 12:19:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 12:19:34 -0700 + + +Started GET "/tasks/28/edit" for ::1 at 2016-04-22 12:24:57 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 28]] + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-22 12:24:57 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 12:24:57 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 12:24:57 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 12:24:57 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 12:24:57 -0700 + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-22 12:24:57 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 12:24:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 12:24:57 -0700 + + +Started GET "/" for ::1 at 2016-04-22 12:24:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 12:25:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/28" for ::1 at 2016-04-22 12:25:02 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 28]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 12:25:03 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/29" for ::1 at 2016-04-22 12:25:05 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 26ms (Views: 24.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 12:25:08 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/27/edit" for ::1 at 2016-04-22 13:16:58 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 27]] + Rendered tasks/edit.html.erb within layouts/application (0.4ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/27/edit" for ::1 at 2016-04-22 13:18:41 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 27]] + Rendered tasks/edit.html.erb within layouts/application (2.2ms) +Completed 200 OK in 22ms (Views: 16.8ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-22 13:18:47 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/28/edit" for ::1 at 2016-04-22 13:18:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 28]] + Rendered tasks/edit.html.erb within layouts/application (1.6ms) +Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/28" for ::1 at 2016-04-22 13:19:10 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"8y2XIQ5hJ7GMma7LhZCxIB9Yx90oTflClrNBu6zcP2d/hkdnp+VbQgAeP1JKxnX8b6p0D6F8K5EJD1Cv1M6o8g==", "task"=>{"title"=>"did this work", "description"=>"figure it out"}, "commit"=>"Update Task", "id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 28]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-22 13:19:10 -0700"], ["updated_at", "2016-04-22 20:19:10.030987"], ["id", 28]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.2ms) + + +Started GET "/" for ::1 at 2016-04-22 13:19:10 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 13:19:12 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 13:19:12 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-22 13:19:12 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 13:19:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/29/edit" for ::1 at 2016-04-22 13:19:14 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] + Rendered tasks/edit.html.erb within layouts/application (1.2ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/29" for ::1 at 2016-04-22 13:19:18 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"CSd/lbPXV7fdSXUNcGhz4pp6RGZ0cyAuF5Qyrz7CyPaFjK/TGlMrRFHO5JS/Prc+6oj3tP1C8v2IKCO7RtBfYw==", "task"=>{"title"=>"testeditedit", "description"=>"testtest"}, "commit"=>"Update Task", "id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-22 13:19:18 -0700"], ["updated_at", "2016-04-22 20:19:18.490458"], ["id", 29]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-22 13:19:18 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 13:19:20 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.7ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-22 13:19:31 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 13:38:34 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 23ms (Views: 20.1ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 13:38:36 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (3.4ms) +Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 13:38:37 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.3ms) +Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-22 13:38:39 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"JJqhAbSGoJTjg6+ttDQiaEfWwj4V4hIYtVg1jNYgDmioMXFHHQLcZ28EPjR7Yua0NyRx7JzTwMsq5CSYrjKZ/Q==", "task"=>{"title"=>"new", "description"=>"new"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.6ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "new"], ["description", "new"], ["created_at", "2016-04-22 20:38:39.452603"], ["updated_at", "2016-04-22 20:38:39.452603"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 1.5ms) + + +Started GET "/" for ::1 at 2016-04-22 13:38:39 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/30/edit" for ::1 at 2016-04-22 13:38:41 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 30]] + Rendered tasks/edit.html.erb within layouts/application (1.3ms) +Completed 200 OK in 30ms (Views: 28.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30" for ::1 at 2016-04-22 13:38:45 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"W6AVGxLUi6A6X5R2PFUezj2fP7ky6E10jmd6okllg3zXC8Vdu1D3U7bYBe/zA9oSTW2Ma7vZn6cR22u2MXcU6Q==", "task"=>{"title"=>"new", "description"=>"hi"}, "commit"=>"Update Task", "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 30]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-22 13:38:45 -0700"], ["updated_at", "2016-04-22 20:38:45.964355"], ["id", 30]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-04-22 13:38:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 13:38:48 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.2ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/30" for ::1 at 2016-04-22 13:38:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 30]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2016-04-22 13:41:14 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 24ms (Views: 21.6ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-22 13:41:15 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27/edit" for ::1 at 2016-04-22 13:41:17 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 27]] + Rendered tasks/edit.html.erb within layouts/application (1.8ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/27" for ::1 at 2016-04-22 13:41:25 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"VsklblK/+gXsr6Sm+6TNEHkvtHJ1/WSDzgTnv1dlcX/aYvUo+zuG9mAoNT808gnMCd0HoPzMtlBRuParL3fm6g==", "task"=>{"title"=>"Make another feature... like editing", "description"=>"ughh"}, "commit"=>"Update Task", "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 27]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-22 13:41:25 -0700"], ["updated_at", "2016-04-22 20:41:25.282218"], ["id", 27]] +  (1.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/" for ::1 at 2016-04-22 13:41:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 13:41:27 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.5ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2016-04-22 13:41:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 27]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 21ms (Views: 20.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 13:41:36 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 13:41:37 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.1ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-22 13:41:43 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"hkwTXTmEo5uzXkHgpldatWFfKiAlvrKO01vx3fcbZK0K58MbkADfaD/Z0HlpAZ5pEa2Z8qyPYF1M5+DJjwnzOA==", "task"=>{"title"=>"new", "description"=>"testtest"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "new"], ["description", "testtest"], ["created_at", "2016-04-22 20:41:43.428172"], ["updated_at", "2016-04-22 20:41:43.428172"]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-04-22 13:41:43 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 13:41:53 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.4ms) +Completed 200 OK in 18ms (Views: 17.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/30" for ::1 at 2016-04-22 13:41:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 30]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 13:42:02 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 13:42:47 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/31/edit" for ::1 at 2016-04-22 13:42:48 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 31]] + Rendered tasks/edit.html.erb within layouts/application (2.6ms) +Completed 200 OK in 20ms (Views: 18.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/31" for ::1 at 2016-04-22 13:42:53 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"gdXWP0Hn1bXf4LOgU6tgdarGzjBIa4YmpHj0EWugs54NfgZ56GOpRlNnIjmc/aSp2jR94sFaVPU7xOUFE7IkCw==", "task"=>{"title"=>"new", "description"=>"hello"}, "commit"=>"Update Task", "id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 31]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-22 13:42:53 -0700"], ["updated_at", "2016-04-22 20:42:53.860730"], ["id", 31]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-22 13:42:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 23ms (Views: 22.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/31/edit" for ::1 at 2016-04-22 13:43:26 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 31]] + Rendered tasks/edit.html.erb within layouts/application (2.3ms) +Completed 200 OK in 22ms (Views: 17.0ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-22 13:43:27 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 13:43:28 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-22 13:43:30 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"AmTNi9QI9vr9KVw27dUeUq0a3VwSfhPubHUfcGX9/JqOzx3NfYyKCXGuza8ig9qO3ehujptPwT3zyQ5kHe9rDw==", "task"=>{"title"=>"more", "description"=>"moremore"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "more"], ["description", "moremore"], ["created_at", "2016-04-22 20:43:30.731549"], ["updated_at", "2016-04-22 20:43:30.731549"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-22 13:43:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/32/edit" for ::1 at 2016-04-22 13:43:32 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"32"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 32]] + Rendered tasks/edit.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/32" for ::1 at 2016-04-22 13:43:33 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"CUls0sw5GR1ntuhr/ybJ+SK+RyM7mFLWS2EfgSju8vWF4ryUZb1l7usxefIwcA0lUkz08bKpgAXU3Q6VUPxlYA==", "task"=>{"title"=>"more", "description"=>"moremore"}, "commit"=>"Update Task", "id"=>"32"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 32]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-22 13:43:33 -0700"], ["updated_at", "2016-04-22 20:43:33.464244"], ["id", 32]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.1ms) + + +Started GET "/" for ::1 at 2016-04-22 13:43:33 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 13:43:40 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.9ms) +Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/27" for ::1 at 2016-04-22 13:43:46 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"T7J047zoer/i/oae1j7aPXwECpfUJycxkFkcELyh7b7DGaSlFWwGTG55FwcZaB7hDPa5RV0W9eIP5Q0ExLN6Kw==", "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 27]] +  (0.0ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 27]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.8ms) + + +Started GET "/" for ::1 at 2016-04-22 13:43:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 13:43:47 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (10.3ms) +Completed 200 OK in 24ms (Views: 23.8ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/3" for ::1 at 2016-04-22 13:43:49 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"pmniqzUTDfTWF+ZXyjGr9V6pnODQOggQj+ZvSESqKIcqwjLtnJdxB1qQd84FZ28pLlsvMlkL2sMQWn5cPLi/Eg==", "id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 3]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/" for ::1 at 2016-04-22 13:43:49 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 14ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 13:43:50 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.1ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/30" for ::1 at 2016-04-22 13:43:52 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"gEvv6o2o6r04ohIRiCbmhHulUP8bDjcaIsfoT1/p430M4D+sJCyWTrQlg4hHcCJYC1fjLZI/5cm9e/lbJ/t06A==", "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 30]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 30]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 2.1ms) + + +Started GET "/" for ::1 at 2016-04-22 13:43:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 13:43:53 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.3ms) +Completed 200 OK in 27ms (Views: 26.0ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/29" for ::1 at 2016-04-22 13:43:56 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"j51FAIuuuaZMDT9q599U9ToyjK0WDpbdFQdDv6IYTBUDNpVGIirFVcCKrvMoiZApSsA/f58/RA6Ku1Kr2grbgA==", "id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 29]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.7ms) + + +Started GET "/" for ::1 at 2016-04-22 13:43:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 13:43:57 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 13:43:58 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.2ms) +Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-22 13:43:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 13:43:59 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.1ms) +Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-22 13:44:02 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"H6gW6kIM0nnr8tEfAGqmiCpwNAQ7i++hEOHMEjM1Ee2TA8as64iuimd1QIbPPGJUWoKH1rK6PXKPXd0GSyeGeA==", "task"=>{"title"=>"hi", "description"=>"hi there"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "hi"], ["description", "hi there"], ["created_at", "2016-04-22 20:44:02.366026"], ["updated_at", "2016-04-22 20:44:02.366026"]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-04-22 13:44:02 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 14:00:38 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 26ms (Views: 23.4ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-22 14:00:39 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 14:00:39 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 14:00:39 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 14:00:39 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-22 14:00:39 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 14:00:39 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 14:00:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 14:00:39 -0700 + + +Started GET "/tasks/33/edit" for ::1 at 2016-04-22 14:00:41 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasks/edit.html.erb within layouts/application (1.7ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/33" for ::1 at 2016-04-22 14:00:46 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks/33"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (64.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (98.1ms) + + +Started PATCH "/tasks/33" for ::1 at 2016-04-22 14:01:07 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Cp/KI59gx4OWyvcNB3M2HJGkvrORz9qiAg9WJIaFnfiGNBplNuS7cBpNZpTIJfLA4VYNYRj+CHGds0cw/pcKbQ==", "task"=>{"title"=>" plzhi", "description"=>"just change"}, "commit"=>"Update Task", "id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] +  (0.1ms) begin transaction + SQL (1.0ms) UPDATE "tasks" SET "title" = ?, "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", nil], ["description", nil], ["updated_at", "2016-04-22 21:01:07.030263"], ["id", 33]] +  (0.1ms) rollback transaction +Completed 500 Internal Server Error in 10ms (ActiveRecord: 1.7ms) + +SQLite3::ConstraintException - NOT NULL constraint failed: tasks.title: + sqlite3 (1.3.11) lib/sqlite3/statement.rb:108:in `block in each' + sqlite3 (1.3.11) lib/sqlite3/statement.rb:107:in `each' + activerecord (4.2.6) lib/active_record/connection_adapters/sqlite3_adapter.rb:314:in `block in exec_query' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract_adapter.rb:472:in `block in log' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract_adapter.rb:466:in `log' + activerecord (4.2.6) lib/active_record/connection_adapters/sqlite3_adapter.rb:293:in `exec_query' + activerecord (4.2.6) lib/active_record/connection_adapters/sqlite3_adapter.rb:319:in `exec_delete' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/database_statements.rb:114:in `update' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/query_cache.rb:14:in `update' + activerecord (4.2.6) lib/active_record/relation.rb:88:in `_update_record' + activerecord (4.2.6) lib/active_record/persistence.rb:515:in `_update_record' + activerecord (4.2.6) lib/active_record/locking/optimistic.rb:79:in `_update_record' + activerecord (4.2.6) lib/active_record/attribute_methods/dirty.rb:129:in `_update_record' + activerecord (4.2.6) lib/active_record/callbacks.rb:310:in `block in _update_record' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_update_callbacks' + activerecord (4.2.6) lib/active_record/callbacks.rb:310:in `_update_record' + activerecord (4.2.6) lib/active_record/timestamp.rb:70:in `_update_record' + activerecord (4.2.6) lib/active_record/persistence.rb:504:in `create_or_update' + activerecord (4.2.6) lib/active_record/callbacks.rb:302:in `block in create_or_update' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_save_callbacks' + activerecord (4.2.6) lib/active_record/callbacks.rb:302:in `create_or_update' + activerecord (4.2.6) lib/active_record/persistence.rb:120:in `save' + activerecord (4.2.6) lib/active_record/validations.rb:37:in `save' + activerecord (4.2.6) lib/active_record/attribute_methods/dirty.rb:21:in `save' + activerecord (4.2.6) lib/active_record/transactions.rb:286:in `block (2 levels) in save' + activerecord (4.2.6) lib/active_record/transactions.rb:351:in `block in with_transaction_returning_status' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/transaction.rb:184:in `within_new_transaction' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction' + activerecord (4.2.6) lib/active_record/transactions.rb:220:in `transaction' + activerecord (4.2.6) lib/active_record/transactions.rb:348:in `with_transaction_returning_status' + activerecord (4.2.6) lib/active_record/transactions.rb:286:in `block in save' + activerecord (4.2.6) lib/active_record/transactions.rb:301:in `rollback_active_record_state!' + activerecord (4.2.6) lib/active_record/transactions.rb:285:in `save' + app/controllers/tasks_controller.rb:53:in `update_edit' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/923c47d37fc86a09/variables" for ::1 at 2016-04-22 14:01:07 -0700 + + +Started POST "/__better_errors/923c47d37fc86a09/eval" for ::1 at 2016-04-22 14:01:12 -0700 + + +Started GET "/" for ::1 at 2016-04-22 14:01:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 25ms (Views: 22.5ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks/33/edit" for ::1 at 2016-04-22 14:01:57 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasks/edit.html.erb within layouts/application (2.2ms) +Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/33" for ::1 at 2016-04-22 14:02:00 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"OQzVUE0o1GzdRvzFHwhhPuojIdQu5KKseFs66+xIusG1pwUW5Kyon1HBbVzQXqXimtGSBqfVcH/n5yv/lFotVA==", "task"=>{"title"=>"bye", "description"=>"hi there"}, "commit"=>"Update Task", "id"=>"33"} +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `title=' for nil:NilClass: + app/controllers/tasks_controller.rb:51:in `update_edit' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/8614819768ff72d5/variables" for ::1 at 2016-04-22 14:02:00 -0700 + + +Started POST "/__better_errors/8614819768ff72d5/eval" for ::1 at 2016-04-22 14:02:04 -0700 + + +Started GET "/" for ::1 at 2016-04-22 14:02:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (6.0ms) +Completed 200 OK in 29ms (Views: 27.0ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/33/edit" for ::1 at 2016-04-22 14:02:47 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasks/edit.html.erb within layouts/application (2.4ms) +Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/33" for ::1 at 2016-04-22 14:02:50 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"6I1BqJ5fxO2A3kkleoC9r48gQyNTXW1XLlQHLxhhfnVkJpHuN9u4HgxZ2Ly11nlz/9Lw8dpsv4Sx6BY7YHPp4A==", "task"=>{"title"=>"bye", "description"=>"hi there"}, "commit"=>"Update Task", "id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] +  (0.0ms) begin transaction + SQL (1.7ms) UPDATE "tasks" SET "title" = ?, "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", nil], ["description", nil], ["updated_at", "2016-04-22 21:02:50.065277"], ["id", 33]] +  (0.1ms) rollback transaction +Completed 500 Internal Server Error in 6ms (ActiveRecord: 1.9ms) + +SQLite3::ConstraintException - NOT NULL constraint failed: tasks.title: + sqlite3 (1.3.11) lib/sqlite3/statement.rb:108:in `block in each' + sqlite3 (1.3.11) lib/sqlite3/statement.rb:107:in `each' + activerecord (4.2.6) lib/active_record/connection_adapters/sqlite3_adapter.rb:314:in `block in exec_query' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract_adapter.rb:472:in `block in log' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract_adapter.rb:466:in `log' + activerecord (4.2.6) lib/active_record/connection_adapters/sqlite3_adapter.rb:293:in `exec_query' + activerecord (4.2.6) lib/active_record/connection_adapters/sqlite3_adapter.rb:319:in `exec_delete' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/database_statements.rb:114:in `update' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/query_cache.rb:14:in `update' + activerecord (4.2.6) lib/active_record/relation.rb:88:in `_update_record' + activerecord (4.2.6) lib/active_record/persistence.rb:515:in `_update_record' + activerecord (4.2.6) lib/active_record/locking/optimistic.rb:79:in `_update_record' + activerecord (4.2.6) lib/active_record/attribute_methods/dirty.rb:129:in `_update_record' + activerecord (4.2.6) lib/active_record/callbacks.rb:310:in `block in _update_record' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_update_callbacks' + activerecord (4.2.6) lib/active_record/callbacks.rb:310:in `_update_record' + activerecord (4.2.6) lib/active_record/timestamp.rb:70:in `_update_record' + activerecord (4.2.6) lib/active_record/persistence.rb:504:in `create_or_update' + activerecord (4.2.6) lib/active_record/callbacks.rb:302:in `block in create_or_update' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_save_callbacks' + activerecord (4.2.6) lib/active_record/callbacks.rb:302:in `create_or_update' + activerecord (4.2.6) lib/active_record/persistence.rb:120:in `save' + activerecord (4.2.6) lib/active_record/validations.rb:37:in `save' + activerecord (4.2.6) lib/active_record/attribute_methods/dirty.rb:21:in `save' + activerecord (4.2.6) lib/active_record/transactions.rb:286:in `block (2 levels) in save' + activerecord (4.2.6) lib/active_record/transactions.rb:351:in `block in with_transaction_returning_status' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/transaction.rb:184:in `within_new_transaction' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction' + activerecord (4.2.6) lib/active_record/transactions.rb:220:in `transaction' + activerecord (4.2.6) lib/active_record/transactions.rb:348:in `with_transaction_returning_status' + activerecord (4.2.6) lib/active_record/transactions.rb:286:in `block in save' + activerecord (4.2.6) lib/active_record/transactions.rb:301:in `rollback_active_record_state!' + activerecord (4.2.6) lib/active_record/transactions.rb:285:in `save' + app/controllers/tasks_controller.rb:53:in `update_edit' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/0a26c7a65ba69e96/variables" for ::1 at 2016-04-22 14:02:50 -0700 + + +Started POST "/__better_errors/0a26c7a65ba69e96/eval" for ::1 at 2016-04-22 14:02:53 -0700 + + +Started POST "/__better_errors/0a26c7a65ba69e96/eval" for ::1 at 2016-04-22 14:03:03 -0700 + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", nil]] + + +Started POST "/__better_errors/0a26c7a65ba69e96/eval" for ::1 at 2016-04-22 14:03:15 -0700 + + +Started POST "/__better_errors/0a26c7a65ba69e96/eval" for ::1 at 2016-04-22 14:03:19 -0700 + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] + + +Started GET "/" for ::1 at 2016-04-22 14:03:35 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 25ms (Views: 22.4ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks/33/edit" for ::1 at 2016-04-22 14:03:36 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasks/edit.html.erb within layouts/application (2.1ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/33" for ::1 at 2016-04-22 14:03:39 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"iGEq1V9ZP2wP6QJCech4yOzhGADKEhN8dDNreAvknj0EyvqT9t1Dn4Nuk9u2nrwUnBOr0kMjwa/rj3psc/YJqA==", "task"=>{"title"=>"bye", "description"=>"hi there"}, "commit"=>"Update Task", "id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms) + +RuntimeError - : + app/controllers/tasks_controller.rb:51:in `update_edit' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/33eecfa9bb7107b0/variables" for ::1 at 2016-04-22 14:03:39 -0700 + + +Started POST "/__better_errors/33eecfa9bb7107b0/eval" for ::1 at 2016-04-22 14:03:43 -0700 + + +Started GET "/" for ::1 at 2016-04-22 14:03:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 25ms (Views: 22.0ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/33/edit" for ::1 at 2016-04-22 14:03:58 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasks/edit.html.erb within layouts/application (2.0ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/33" for ::1 at 2016-04-22 14:04:00 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ImKc9/EPjPe5l7sbXztxH6Vxf0iCJCQghwZ5W7Tl+IiuyUyxWIvwBDUQKoKQbbXD1YPMmgsV9vMYumhPzPdvHQ==", "task"=>{"title"=>"bye", "description"=>"hi there"}, "commit"=>"Update Task", "id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms) + +RuntimeError - : + app/controllers/tasks_controller.rb:52:in `update_edit' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/750d2ecfab9a7f46/variables" for ::1 at 2016-04-22 14:04:00 -0700 + + +Started POST "/__better_errors/750d2ecfab9a7f46/eval" for ::1 at 2016-04-22 14:04:04 -0700 + + +Started POST "/__better_errors/750d2ecfab9a7f46/eval" for ::1 at 2016-04-22 14:04:11 -0700 + + +Started POST "/__better_errors/750d2ecfab9a7f46/eval" for ::1 at 2016-04-22 14:05:19 -0700 +Unpermitted parameters: utf8, _method, authenticity_token, commit, id + + +Started GET "/" for ::1 at 2016-04-22 14:06:15 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (5.3ms) +Completed 200 OK in 22ms (Views: 19.4ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/33/edit" for ::1 at 2016-04-22 14:06:17 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"33"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasks/edit.html.erb within layouts/application (2.2ms) +Completed 200 OK in 18ms (Views: 16.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/33" for ::1 at 2016-04-22 14:06:19 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"xPYJrcXAeAIUXHWPOFn/hDswAwDFBWjQHTiAqXmBEaJIXdnrbEQE8Zjb5Bb3DztYS8Kw0kw0ugOChJG9AZOGNw==", "task"=>{"title"=>"bye", "description"=>"hi there"}, "commit"=>"Update Task", "id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms) + +RuntimeError - : + app/controllers/tasks_controller.rb:52:in `update_edit' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/d9a9c59ab03e61b6/variables" for ::1 at 2016-04-22 14:06:19 -0700 + + +Started POST "/__better_errors/d9a9c59ab03e61b6/eval" for ::1 at 2016-04-22 14:06:24 -0700 + + +Started POST "/__better_errors/d9a9c59ab03e61b6/eval" for ::1 at 2016-04-22 14:06:28 -0700 + + +Started POST "/__better_errors/d9a9c59ab03e61b6/eval" for ::1 at 2016-04-22 14:06:34 -0700 + + +Started POST "/__better_errors/d9a9c59ab03e61b6/eval" for ::1 at 2016-04-22 14:06:37 -0700 + + +Started POST "/__better_errors/d9a9c59ab03e61b6/eval" for ::1 at 2016-04-22 14:06:43 -0700 + + +Started POST "/__better_errors/d9a9c59ab03e61b6/eval" for ::1 at 2016-04-22 14:07:09 -0700 +Unpermitted parameter: description +Unpermitted parameters: utf8, _method, authenticity_token, commit, id + + +Started POST "/__better_errors/d9a9c59ab03e61b6/eval" for ::1 at 2016-04-22 14:07:18 -0700 +Unpermitted parameter: description +Unpermitted parameters: utf8, _method, authenticity_token, commit, id + + +Started POST "/__better_errors/d9a9c59ab03e61b6/eval" for ::1 at 2016-04-22 14:07:25 -0700 + + +Started POST "/__better_errors/d9a9c59ab03e61b6/eval" for ::1 at 2016-04-22 14:07:33 -0700 +Unpermitted parameters: utf8, _method, authenticity_token, commit, id + + +Started POST "/__better_errors/d9a9c59ab03e61b6/eval" for ::1 at 2016-04-22 14:07:40 -0700 +Unpermitted parameters: utf8, _method, authenticity_token, commit, id + + +Started POST "/__better_errors/d9a9c59ab03e61b6/eval" for ::1 at 2016-04-22 14:08:31 -0700 + + +Started POST "/__better_errors/d9a9c59ab03e61b6/eval" for ::1 at 2016-04-22 14:08:40 -0700 + + +Started POST "/__better_errors/d9a9c59ab03e61b6/eval" for ::1 at 2016-04-22 14:08:45 -0700 + + +Started GET "/" for ::1 at 2016-04-22 14:09:20 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 22ms (Views: 19.6ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/33/edit" for ::1 at 2016-04-22 14:09:22 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasks/edit.html.erb within layouts/application (1.6ms) +Completed 200 OK in 18ms (Views: 16.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/33" for ::1 at 2016-04-22 14:09:25 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Q3CMbzgAOgUMPr+LjGskS1BIxVOwjM82KRXkfMovLl/P21wpkYRG9oC5LhJDPeCXILp2gTm9HeW2qfVosj25yg==", "task"=>{"title"=>"bye", "description"=>"hi there"}, "commit"=>"Update Task", "id"=>"33"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", "bye"], ["updated_at", "2016-04-22 21:09:25.168974"], ["id", 33]] +  (0.7ms) commit transaction +Completed 500 Internal Server Error in 6ms (ActiveRecord: 1.3ms) + +ActionView::MissingTemplate - Missing template tasks/update_edit, application/update_edit with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/annamason/C5/projects/TaskListRails/task-list/app/views" +: + actionview (4.2.6) lib/action_view/path_set.rb:46:in `find' + actionview (4.2.6) lib/action_view/lookup_context.rb:121:in `find' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:8:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/942ffd139d3e57b7/variables" for ::1 at 2016-04-22 14:09:25 -0700 + + +Started GET "/" for ::1 at 2016-04-22 14:09:42 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (5.4ms) +Completed 200 OK in 23ms (Views: 20.7ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/33/edit" for ::1 at 2016-04-22 14:09:43 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasks/edit.html.erb within layouts/application (2.1ms) +Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/33" for ::1 at 2016-04-22 14:09:46 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"UMd2rn15Y4BCm1lCKzLORKmE2TRnU8p1Yaja+06Ez57cbKbo1P0fc84cyNvkZAqY2XZq5u5iGKb+FMvvNpZYCw==", "task"=>{"title"=>"hello", "description"=>"hi there"}, "commit"=>"Update Task", "id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", "hello"], ["updated_at", "2016-04-22 21:09:46.455724"], ["id", 33]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-22 14:09:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/33/edit" for ::1 at 2016-04-22 14:09:47 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasks/edit.html.erb within layouts/application (2.7ms) +Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/33" for ::1 at 2016-04-22 14:09:53 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"rQUkz2mSfaQ1XVrKbPHJVdWf9K9afBvhD6Ru4wIIEcYhrvSJwBYBV7nay1Ojpw2JpW1HfdNNyTKQGH/3ehqGUw==", "task"=>{"title"=>"balh", "description"=>"editing this shit"}, "commit"=>"Update Task", "id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "title" = ?, "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", "balh"], ["description", "editing this shit"], ["updated_at", "2016-04-22 21:09:53.124923"], ["id", 33]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-22 14:09:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/33" for ::1 at 2016-04-22 14:09:54 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 14:09:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 14:10:29 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 14:10:30 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.7ms) +Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-22 14:10:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (6.8ms) +Completed 200 OK in 22ms (Views: 20.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 14:10:31 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 14:10:31 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.8ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 14:28:12 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 20ms (Views: 19.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/33/edit" for ::1 at 2016-04-22 14:28:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasks/edit.html.erb within layouts/application (5.2ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `[]' for nil:NilClass: + app/views/tasks/edit.html.erb:16:in `_app_views_tasks_edit_html_erb___1033091377962916135_70299301596100' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasks/33/edit" for ::1 at 2016-04-22 14:28:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasks/edit.html.erb within layouts/application (10.2ms) +Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `[]' for nil:NilClass: + app/views/tasks/edit.html.erb:16:in `_app_views_tasks_edit_html_erb___1033091377962916135_70299252642440' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/bd0790de7ce6cec2/variables" for ::1 at 2016-04-22 14:28:14 -0700 + + +Started GET "/tasks/33" for ::1 at 2016-04-22 14:28:18 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 18ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 14:29:04 -0700 +Processing by TasksController#completed as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (15.4ms) +Completed 200 OK in 46ms (Views: 43.9ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-22 14:29:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 27ms (Views: 26.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/33/edit" for ::1 at 2016-04-22 14:29:06 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"33"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasks/edit.html.erb within layouts/application (5.2ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `[]' for nil:NilClass: + app/views/tasks/edit.html.erb:16:in `_app_views_tasks_edit_html_erb___1033091377962916135_70299301596100' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasks/33/edit" for ::1 at 2016-04-22 14:29:06 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"33"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasks/edit.html.erb within layouts/application (6.2ms) +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `[]' for nil:NilClass: + app/views/tasks/edit.html.erb:16:in `_app_views_tasks_edit_html_erb___1033091377962916135_70299252642440' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/fdbc0c440b826a64/variables" for ::1 at 2016-04-22 14:29:06 -0700 + + +Started GET "/" for ::1 at 2016-04-22 14:30:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/33/edit" for ::1 at 2016-04-22 14:31:02 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"33"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasks/edit.html.erb within layouts/application (4.9ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `[]' for nil:NilClass: + app/views/tasks/edit.html.erb:16:in `_app_views_tasks_edit_html_erb___1033091377962916135_70299301596100' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasks/33/edit" for ::1 at 2016-04-22 14:31:02 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"33"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasks/edit.html.erb within layouts/application (5.3ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `[]' for nil:NilClass: + app/views/tasks/edit.html.erb:16:in `_app_views_tasks_edit_html_erb___1033091377962916135_70299252642440' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4f487b29c3bc16b2/variables" for ::1 at 2016-04-22 14:31:02 -0700 + + +Started GET "/" for ::1 at 2016-04-22 14:31:23 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/33/edit" for ::1 at 2016-04-22 14:31:24 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasks/edit.html.erb within layouts/application (2.2ms) +Completed 200 OK in 22ms (Views: 21.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/33" for ::1 at 2016-04-22 14:31:28 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"DfX5IA7x+sL0MjGRTfoueEfWvfXF+NarAWAWWigKLeyBXilmp3WGMXi1oAiCrOqkNyQOJ0zJBHie3AdOUBi6eQ==", "task"=>{"title"=>"hi there", "description"=>"editing this shit"}, "commit"=>"Update Task", "id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", "hi there"], ["updated_at", "2016-04-22 21:31:28.415749"], ["id", 33]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-04-22 14:31:28 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/33/edit" for ::1 at 2016-04-22 14:31:36 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasks/edit.html.erb within layouts/application (1.4ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 14:33:02 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 23ms (Views: 20.7ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/33/edit" for ::1 at 2016-04-22 14:34:17 -0700 + +SyntaxError - syntax error, unexpected end-of-input, expecting keyword_end: + app/controllers/tasks_controller.rb:64:in `' + activesupport (4.2.6) lib/active_support/dependencies.rb:457:in `block in load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:647:in `new_constants_in' + activesupport (4.2.6) lib/active_support/dependencies.rb:456:in `load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:354:in `require_or_load' + activesupport (4.2.6) lib/active_support/dependencies.rb:494:in `load_missing_constant' + activesupport (4.2.6) lib/active_support/dependencies.rb:184:in `const_missing' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + activesupport (4.2.6) lib/active_support/dependencies.rb:566:in `get' + activesupport (4.2.6) lib/active_support/dependencies.rb:597:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasks/33/edit" for ::1 at 2016-04-22 14:34:17 -0700 + +SyntaxError - syntax error, unexpected end-of-input, expecting keyword_end: + app/controllers/tasks_controller.rb:64:in `' + activesupport (4.2.6) lib/active_support/dependencies.rb:457:in `block in load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:647:in `new_constants_in' + activesupport (4.2.6) lib/active_support/dependencies.rb:456:in `load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:354:in `require_or_load' + activesupport (4.2.6) lib/active_support/dependencies.rb:494:in `load_missing_constant' + activesupport (4.2.6) lib/active_support/dependencies.rb:184:in `const_missing' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + activesupport (4.2.6) lib/active_support/dependencies.rb:566:in `get' + activesupport (4.2.6) lib/active_support/dependencies.rb:597:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/71db978127a69130/variables" for ::1 at 2016-04-22 14:34:17 -0700 + + +Started GET "/" for ::1 at 2016-04-22 14:34:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks/33/edit" for ::1 at 2016-04-22 14:34:56 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"33"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasks/edit.html.erb within layouts/application (1.6ms) +Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/33" for ::1 at 2016-04-22 14:35:01 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"uV8Xc5iQxENfVKlJ5lpfNJtkrB3Rxz9Aq6Z/riFXf/c19Mc1MRS4sNPTONApDJvo65Yfz1j27ZM0Gm66WUXoYg==", "task"=>{"title"=>"nope", "description"=>"editing this shit"}, "commit"=>"Update Task", "id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", "nope"], ["updated_at", "2016-04-22 21:35:01.470092"], ["id", 33]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-04-22 14:35:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 22ms (Views: 20.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 14:35:42 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 32ms (Views: 29.6ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-22 14:35:42 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-22 14:35:42 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 14:35:42 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 14:35:42 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 14:35:42 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 14:35:42 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 14:35:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 14:35:42 -0700 + + +Started GET "/tasks/33/edit" for ::1 at 2016-04-22 14:35:43 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"33"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasks/edit.html.erb within layouts/application (2.2ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/33" for ::1 at 2016-04-22 14:35:46 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"vtTdHbW1d2ixwVnv6BxmqOGFwdzRw/EC1+IxjgUFGIAyfw1bHDELmz1GyHYnSqJ0kXdyDljyI9FIXiCafRePFQ==", "task"=>{"title"=>"yup", "description"=>"editing this shit"}, "commit"=>"Update Task", "id"=>"33"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", "yup"], ["updated_at", "2016-04-22 21:35:46.562805"], ["id", 33]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 7ms (ActiveRecord: 1.4ms) + + +Started GET "/" for ::1 at 2016-04-22 14:35:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/33" for ::1 at 2016-04-22 14:35:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/33" for ::1 at 2016-04-22 14:35:50 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"authenticity_token"=>"ku3TTugJe8NDw+GGgpGUNUGrqIyyBW5cCmATuDLOjQEeRgMIQY0HMM9EcB9Nx1DpMVkbXjs0vI+V3AKsStwalA==", "id"=>"33"} +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `[]' for nil:NilClass: + app/controllers/tasks_controller.rb:50:in `update_edit' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b2b5936efaf37153/variables" for ::1 at 2016-04-22 14:35:50 -0700 + + +Started POST "/__better_errors/b2b5936efaf37153/eval" for ::1 at 2016-04-22 14:35:57 -0700 + + +Started POST "/__better_errors/b2b5936efaf37153/eval" for ::1 at 2016-04-22 14:38:09 -0700 + + +Started POST "/__better_errors/b2b5936efaf37153/eval" for ::1 at 2016-04-22 14:38:14 -0700 + + +Started POST "/__better_errors/b2b5936efaf37153/eval" for ::1 at 2016-04-22 14:40:03 -0700 + + +Started GET "/" for ::1 at 2016-04-22 14:40:14 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (11.1ms) +Completed 200 OK in 34ms (Views: 31.9ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/33/edit" for ::1 at 2016-04-22 14:40:16 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"33"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasks/edit.html.erb within layouts/application (1.6ms) +Completed 200 OK in 18ms (Views: 16.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/33" for ::1 at 2016-04-22 14:40:19 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"HB1xHc0DWuXGhANlC0DPECdDA7xioNqzt8cFearFSrSQtqFbZIcmFkoDkvzEFgvMV7GwbuuRCGAoexRt0tfdIQ==", "task"=>{"title"=>"nope", "description"=>"editing this shit"}, "commit"=>"Update Task", "id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 33]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-22 14:40:19 -0700"], ["updated_at", "2016-04-22 21:40:19.593856"], ["id", 33]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-22 14:40:19 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 14:40:38 -0700 +Processing by TasksController#completed as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (6.1ms) +Completed 200 OK in 33ms (Views: 30.5ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-22 14:40:54 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 14:40:55 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (2.1ms) +Completed 200 OK in 19ms (Views: 15.9ms | ActiveRecord: 0.3ms) + + +Started POST "/tasks" for ::1 at 2016-04-22 14:40:58 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"DmQ2wvbAmMwsQfTKF77wR974m8sZGUaEn6b/qvaVPbqCz+aEX0TkP6DGZVPY6DSbrgooGZAolFcAGu6+joeqLw==", "task"=>{"title"=>"test", "description"=>"hi thar"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "test"], ["description", "hi thar"], ["created_at", "2016-04-22 21:40:58.154029"], ["updated_at", "2016-04-22 21:40:58.154029"]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-04-22 14:40:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/34" for ::1 at 2016-04-22 14:41:00 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"authenticity_token"=>"VkO4k3yRNWgq/l1aaLNVqopSLE2CIhM8ghLHAf8vVkXa6GjV1RVJm6Z5zMOn5ZF2+qCfnwsTwe8drtYVhz3B0A==", "id"=>"34"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 34]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-22 14:41:00 -0700"], ["updated_at", "2016-04-22 21:41:00.233885"], ["id", 34]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.0ms) + + +Started GET "/" for ::1 at 2016-04-22 14:41:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 14:41:01 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.4ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/34" for ::1 at 2016-04-22 14:41:05 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"BDyRKlh7JnOUUBxOSR9a9NnQueAMXYwErdzDC0qxFqeIl0Fs8f9agBjXjdeGSZ4oqSIKMoVsXtcyYNIfMqOBMg==", "id"=>"34"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 34]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 34]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.9ms) + + +Started GET "/" for ::1 at 2016-04-22 14:41:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 14:41:07 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.2ms) +Completed 200 OK in 15ms (Views: 15.1ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-22 14:41:11 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"P7J/5dQEsUL9lj9eGz5JwtDJYkzw1+hpa4mw0RupMuyzGa+jfYDNsXERrsfUaI0eoDvRnnnmOrr0NaHFY7uleQ==", "task"=>{"title"=>"test for editing", "description"=>"can i do it"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "test for editing"], ["description", "can i do it"], ["created_at", "2016-04-22 21:41:11.897282"], ["updated_at", "2016-04-22 21:41:11.897282"]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-22 14:41:11 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/35/edit" for ::1 at 2016-04-22 14:41:20 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 35]] + Rendered tasks/edit.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/35" for ::1 at 2016-04-22 14:41:25 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Qoy0oaFhR03UcPUgYiCF+usvVwi/Gf68we5oFJX3gkbOJ2TnCOU7vlj3ZLmtdkEmm93k2jYoLG9eUnkA7eUV0w==", "task"=>{"title"=>"banans", "description"=>"can i do it"}, "commit"=>"Update Task", "id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 35]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-22 14:41:25 -0700"], ["updated_at", "2016-04-22 21:41:25.497189"], ["id", 35]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-22 14:41:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 14:41:36 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.5ms) +Completed 200 OK in 32ms (Views: 26.2ms | ActiveRecord: 0.4ms) + + +Started POST "/tasks" for ::1 at 2016-04-22 14:41:39 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"v7RXJQ5x24e12lAcDhTt+vNgibbR674i6iMg8yknRpwzH4djp/WndDldwYXBQikmg5I6ZFjabPF1nzHnUTXRCQ==", "task"=>{"title"=>"more", "description"=>"testtest"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "more"], ["description", "testtest"], ["created_at", "2016-04-22 21:41:39.571280"], ["updated_at", "2016-04-22 21:41:39.571280"]] +  (1.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 1.6ms) + + +Started GET "/" for ::1 at 2016-04-22 14:41:39 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 28ms (Views: 26.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/36/edit" for ::1 at 2016-04-22 14:41:41 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"36"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 36]] + Rendered tasks/edit.html.erb within layouts/application (1.8ms) +Completed 200 OK in 19ms (Views: 17.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/36" for ::1 at 2016-04-22 14:41:47 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"wR09cLlGhf2ShhoHuknp4/Gt/VwAM8LQVJzZ8zOC6gFNtu02EML5Dh4Bi551Hy0/gV9OjokCEAPLIMjnS5B9lA==", "task"=>{"title"=>"less", "description"=>"hi"}, "commit"=>"Update Task", "id"=>"36"} +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + +RuntimeError - : + app/controllers/tasks_controller.rb:50:in `update_edit' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1602e97180789399/variables" for ::1 at 2016-04-22 14:41:47 -0700 + + +Started POST "/__better_errors/1602e97180789399/eval" for ::1 at 2016-04-22 14:42:01 -0700 + + +Started POST "/__better_errors/1602e97180789399/eval" for ::1 at 2016-04-22 14:42:10 -0700 + + +Started POST "/__better_errors/1602e97180789399/eval" for ::1 at 2016-04-22 14:42:17 -0700 + + +Started GET "/" for ::1 at 2016-04-22 14:42:26 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 31ms (Views: 28.0ms | ActiveRecord: 0.7ms) + + +Started GET "/" for ::1 at 2016-04-22 14:42:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (5.9ms) +Completed 200 OK in 29ms (Views: 27.0ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-22 14:42:30 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 14:42:30 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-22 14:42:30 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 14:42:30 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 14:42:30 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 14:42:30 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 14:42:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 14:42:30 -0700 + + +Started GET "/tasks/36/edit" for ::1 at 2016-04-22 14:42:32 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"36"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 36]] + Rendered tasks/edit.html.erb within layouts/application (1.9ms) +Completed 200 OK in 25ms (Views: 22.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/36" for ::1 at 2016-04-22 14:42:34 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"9QD9ATKL6KDT/NrdYEmDdpOShP2bzn6PRtLWSmdCudF5qy1Hmw+UU197S0SvH0eq42A3LxL/rFzZbsdeH1AuRA==", "task"=>{"title"=>"less", "description"=>"testtest"}, "commit"=>"Update Task", "id"=>"36"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 36]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-22 14:42:34 -0700"], ["updated_at", "2016-04-22 21:42:34.795559"], ["id", 36]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-22 14:42:34 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 14:42:36 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.8ms) +Completed 200 OK in 18ms (Views: 17.9ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/36" for ::1 at 2016-04-22 14:42:39 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"Vouv31iwIE8Y12ElJnJ/A/vuT9rN6zYTdnyyWAufWd/aIH+Z8TRcvJRQ8LzpJLvfixz8CETa5MDpwKNMc43OSg==", "id"=>"36"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 36]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 36]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.9ms) + + +Started GET "/" for ::1 at 2016-04-22 14:42:39 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 14:42:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 19ms (Views: 16.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 14:42:46 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.9ms) +Completed 200 OK in 19ms (Views: 15.9ms | ActiveRecord: 0.2ms) + + +Started POST "/tasks" for ::1 at 2016-04-22 14:42:50 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"s3vyOmrVILsvAdNsQs90XEPQ/eaUWey+Cuq92momEZo/0CJ8w1FcSKOGQvWNmbCAMyJONB1oPm2VVqzOEjSGDw==", "task"=>{"title"=>"bananas", "description"=>""}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "bananas"], ["description", ""], ["created_at", "2016-04-22 21:42:50.920474"], ["updated_at", "2016-04-22 21:42:50.920474"]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.2ms) + + +Started GET "/" for ::1 at 2016-04-22 14:42:50 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/37/edit" for ::1 at 2016-04-22 14:42:53 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"37"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 37]] + Rendered tasks/edit.html.erb within layouts/application (1.8ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/37" for ::1 at 2016-04-22 14:42:56 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"/RpPuJQY7Ip4GO16WB/3VZ9JUdSzFk7ZxYc315ZRh6ZxsZ/+PZyQefSffOOXSTOJ77viBjonnApaOybD7kMQMw==", "task"=>{"title"=>"oranges", "description"=>""}, "commit"=>"Update Task", "id"=>"37"} +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + +RuntimeError - : + app/controllers/tasks_controller.rb:50:in `update_edit' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/73861d7130f4b0df/variables" for ::1 at 2016-04-22 14:42:56 -0700 + + +Started POST "/__better_errors/73861d7130f4b0df/eval" for ::1 at 2016-04-22 14:43:05 -0700 + + +Started POST "/__better_errors/73861d7130f4b0df/eval" for ::1 at 2016-04-22 14:43:09 -0700 + + +Started GET "/" for ::1 at 2016-04-22 14:43:28 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (10.4ms) +Completed 200 OK in 27ms (Views: 24.6ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/37/edit" for ::1 at 2016-04-22 14:43:30 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"37"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 37]] + Rendered tasks/edit.html.erb within layouts/application (1.7ms) +Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/37" for ::1 at 2016-04-22 14:43:32 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"K9rJ1sGJRYjWhdz1lblAq3/9d5ayBzQaQLokvMPjodqncRmQaA05e1oCTWxa74R3Dw/ERDs25snfBjWou/E2Tw==", "task"=>{"title"=>"oranges", "description"=>""}, "commit"=>"Update Task", "id"=>"37"} +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + +RuntimeError - : + app/controllers/tasks_controller.rb:50:in `update_edit' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/2ff98ec4ace67ef6/variables" for ::1 at 2016-04-22 14:43:32 -0700 + + +Started GET "/" for ::1 at 2016-04-22 14:43:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (6.5ms) +Completed 200 OK in 32ms (Views: 29.1ms | ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-04-22 14:43:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/37/edit" for ::1 at 2016-04-22 14:43:46 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"37"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 37]] + Rendered tasks/edit.html.erb within layouts/application (2.3ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/37" for ::1 at 2016-04-22 14:43:50 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ofXYAAuFOvdfpWSsdxJrQmzWFBAYGt46yd+ObpbgXP8tXghGogFGBNMi9TW4RK+eHCSnwpErDOlWY5967vLLag==", "task"=>{"title"=>"oranges", "description"=>""}, "commit"=>"Update Task", "id"=>"37"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 37]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-22 14:43:50 -0700"], ["updated_at", "2016-04-22 21:43:50.386963"], ["id", 37]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-22 14:43:50 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 14:43:51 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (4.2ms) +Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 14:44:01 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.6ms) +Completed 200 OK in 28ms (Views: 23.9ms | ActiveRecord: 0.3ms) + + +Started POST "/tasks" for ::1 at 2016-04-22 14:44:05 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"5QAP381x3FelLfQXbjMnHBBC0QBieDICH/iqICtWUQtpq9+ZZPWgpCmqZY6hZePAYLBi0utJ4NGARLs0U0TGng==", "task"=>{"title"=>"apples", "description"=>""}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "apples"], ["description", ""], ["created_at", "2016-04-22 21:44:05.233710"], ["updated_at", "2016-04-22 21:44:05.233710"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-22 14:44:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/38/edit" for ::1 at 2016-04-22 14:44:06 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"38"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 38]] + Rendered tasks/edit.html.erb within layouts/application (1.6ms) +Completed 200 OK in 19ms (Views: 17.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/38" for ::1 at 2016-04-22 14:44:10 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"JBE9XFmUhKM80jTE4h52aRTNt3sxrS1ltmACApy1Y5Oouu0a8BD4ULBVpV0tSLK1ZD8Eqbic/7Yp3BMW5Kf0Bg==", "task"=>{"title"=>"oranges", "description"=>""}, "commit"=>"Update Task", "id"=>"38"} +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + +RuntimeError - : + app/controllers/tasks_controller.rb:50:in `update_edit' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/3d342b400a136676/variables" for ::1 at 2016-04-22 14:44:10 -0700 + + +Started POST "/__better_errors/3d342b400a136676/eval" for ::1 at 2016-04-22 14:44:16 -0700 + + +Started POST "/__better_errors/3d342b400a136676/eval" for ::1 at 2016-04-22 14:44:21 -0700 + + +Started POST "/__better_errors/3d342b400a136676/eval" for ::1 at 2016-04-22 14:45:03 -0700 + + +Started GET "/" for ::1 at 2016-04-22 14:45:12 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 22ms (Views: 19.5ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/38/edit" for ::1 at 2016-04-22 14:45:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"38"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 38]] + Rendered tasks/edit.html.erb within layouts/application (2.1ms) +Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/38" for ::1 at 2016-04-22 14:45:16 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"KfRfNS50+/HLTTGro8SVc6onxC3i7fcHJRwzsowY1DWlX49zh/CHAkfKoDJsklGv2tV3/2vcJdS6oCKm9ApDoA==", "task"=>{"title"=>"oranges", "description"=>""}, "commit"=>"Update Task", "id"=>"38"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 38]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", "oranges"], ["updated_at", "2016-04-22 21:45:16.911471"], ["id", 38]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-22 14:45:16 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/38/edit" for ::1 at 2016-04-22 14:45:18 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"38"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 38]] + Rendered tasks/edit.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/38" for ::1 at 2016-04-22 14:45:22 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"uoeAETayJuN5Ujs+rugtgIGbl6BIXjv+LHQSt91zu342LFBXnzZaEPXVqqdhvulc8WkkcsFv6S2zyAOjpWEs6w==", "task"=>{"title"=>"kiwis", "description"=>""}, "commit"=>"Update Task", "id"=>"38"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 38]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", "kiwis"], ["updated_at", "2016-04-22 21:45:22.554146"], ["id", 38]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-04-22 14:45:22 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 25ms (Views: 24.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/38" for ::1 at 2016-04-22 14:45:25 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"authenticity_token"=>"/11cz9G6S+QLxU2iviMTgqOrCRDIYv99E9lHuCnzFx5z9oyJeD43F4dC3Dtxddde01m6wkFTLa6MZVasUeGAiw==", "id"=>"38"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 38]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-22 14:45:25 -0700"], ["updated_at", "2016-04-22 21:45:25.238839"], ["id", 38]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 2.0ms) + + +Started GET "/" for ::1 at 2016-04-22 14:45:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 14:45:26 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.8ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/38" for ::1 at 2016-04-22 14:45:29 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"RN9yqCPD0zrKHaiB8+Cpjkiy+Uz07eYRf1Si2iXtNm7IdKLuikevyUaaORg8tm1SOEBKnn3cNMLg6LPOXf+h+w==", "id"=>"38"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 38]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 38]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.7ms) + + +Started GET "/" for ::1 at 2016-04-22 14:45:29 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 14:45:30 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.7ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/2" for ::1 at 2016-04-22 14:45:32 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"MB9vwwSNzJ2pjMO9nL4j67yup2qpTPid2Lvvdca/F9i8tL+FrQmwbiULUiRT6Oc3zFwUuCB9Kk5HB/5hvq2ATQ==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 2]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.3ms) + + +Started GET "/" for ::1 at 2016-04-22 14:45:32 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 14:45:33 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.4ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/32" for ::1 at 2016-04-22 14:45:36 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"BRDvKfuMZy4vbnP45U+Xiwg5hlP/4lHFXlrxDUnLAoiJuz9vUggb3aPp4mEqGVNXeMs1gXbTgxbB5uAZMdmVHQ==", "id"=>"32"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 32]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 32]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.8ms) + + +Started GET "/" for ::1 at 2016-04-22 14:45:36 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 14:53:43 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 21ms (Views: 18.1ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 14:53:44 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.6ms) +Completed 200 OK in 26ms (Views: 22.5ms | ActiveRecord: 0.2ms) + + +Started POST "/tasks" for ::1 at 2016-04-22 14:53:48 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"FuhS3RDSjKJ6vzU8pdL6aKU2pYN+PTNKxN6ZFH/0T5+aQ4KbuVbwUfY4pKVqhD601cQWUfcM4ZlbYogAB+bYCg==", "task"=>{"title"=>"new task", "description"=>"testtest"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "new task"], ["description", "testtest"], ["created_at", "2016-04-22 21:53:48.330011"], ["updated_at", "2016-04-22 21:53:48.330011"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-04-22 14:53:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/39" for ::1 at 2016-04-22 14:53:51 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"39"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 39]] + Rendered tasks/show.html.erb within layouts/application (24.5ms) +Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `task' for #<#:0x007fdfa9901150>: + app/views/tasks/show.html.erb:17:in `_app_views_tasks_show_html_erb__866352237205273620_70299257986740' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasks/39" for ::1 at 2016-04-22 14:53:51 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"39"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 39]] + Rendered tasks/show.html.erb within layouts/application (23.4ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `task' for #<#:0x007fdfaa01a7c0>: + app/views/tasks/show.html.erb:17:in `_app_views_tasks_show_html_erb__866352237205273620_70299303332200' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1f27ce9b743f30de/variables" for ::1 at 2016-04-22 14:53:51 -0700 + + +Started GET "/" for ::1 at 2016-04-22 14:54:12 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/39" for ::1 at 2016-04-22 14:54:14 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"39"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 39]] + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/39/edit" for ::1 at 2016-04-22 14:54:14 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"39"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 39]] + Rendered tasks/edit.html.erb within layouts/application (1.3ms) +Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 14:54:29 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 14:54:30 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 14:54:30 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.0ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 14:54:31 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.1ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-22 14:54:32 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 21ms (Views: 19.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 14:54:32 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 14:54:35 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.9ms) +Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 14:54:39 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 22ms (Views: 21.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 14:54:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 69ms (Views: 68.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e8d3f83d8bb869be6a91490240622539d2bdc185207df94cd3cebe01d2a0c3de.css?body=1" for ::1 at 2016-04-22 14:54:52 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-22 14:54:52 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 14:54:52 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 14:54:52 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 14:54:52 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 14:54:52 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 14:54:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 14:54:52 -0700 + + +Started GET "/assets/cloudsart.jpg" for ::1 at 2016-04-22 14:54:52 -0700 + + +Started GET "/" for ::1 at 2016-04-22 14:54:54 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 14:54:56 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.3ms) +Completed 200 OK in 19ms (Views: 18.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-22 14:54:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 14:54:57 -0700 +Processing by TasksController#completed as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (5.7ms) +Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 14:55:02 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-22 14:55:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 14:55:05 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (1.3ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 14:55:07 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.3ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 15:02:53 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.9ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/" for ::1 at 2016-04-22 15:02:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 21ms (Views: 20.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2016-04-22 15:02:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 15:03:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 15:24:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 29ms (Views: 28.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/39" for ::1 at 2016-04-22 15:24:46 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"39"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 39]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 15:24:50 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/39" for ::1 at 2016-04-22 15:24:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"39"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 39]] + Rendered tasks/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/39" for ::1 at 2016-04-22 15:25:48 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"39"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 39]] + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms) + +SyntaxError - syntax error, unexpected tSTRING_BEG, expecting keyword_then or ';' or '\n' +...cted_task.completed_at == nil "In-Progress" else @selected_t... +... ^ +/Users/annamason/C5/projects/TaskListRails/task-list/app/views/tasks/show.html.erb:13: syntax error, unexpected keyword_else, expecting ')' +...ed_at == nil "In-Progress" else @selected_task.completed_at ... +... ^: + app/views/tasks/show.html.erb:13:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f2b4ed33f9b93793/variables" for ::1 at 2016-04-22 15:25:48 -0700 + + +Started GET "/tasks/39" for ::1 at 2016-04-22 15:26:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"39"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 39]] + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-22 15:26:31 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:26:31 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-22 15:26:31 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:26:31 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:26:31 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:26:31 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:26:31 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:26:31 -0700 + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 15:26:33 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.7ms) +Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6" for ::1 at 2016-04-22 15:26:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6/edit" for ::1 at 2016-04-22 15:26:37 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/edit.html.erb within layouts/application (1.6ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 15:26:39 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.9ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 15:26:40 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (4.2ms) +Completed 200 OK in 24ms (Views: 22.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 15:26:41 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/39" for ::1 at 2016-04-22 15:26:42 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"39"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 39]] + Rendered tasks/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 25ms (Views: 23.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 15:26:47 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 15:26:47 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.1ms) +Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 15:26:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 23ms (Views: 22.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 15:29:57 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 21ms (Views: 18.8ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 15:29:58 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (2.5ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + +ArgumentError - First argument in form cannot contain nil or be empty: + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:432:in `form_for' + app/views/tasks/add.html.erb:3:in `_app_views_tasks_add_html_erb___3260547228056082468_70299285579740' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasks/add" for ::1 at 2016-04-22 15:29:58 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (2.5ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +ArgumentError - First argument in form cannot contain nil or be empty: + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:432:in `form_for' + app/views/tasks/add.html.erb:3:in `_app_views_tasks_add_html_erb___3260547228056082468_70299247618000' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/5bdfdccc8f1669a4/variables" for ::1 at 2016-04-22 15:29:58 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-22 15:30:09 -0700 +Processing by TasksController#add as HTML + Rendered tasks/add.html.erb within layouts/application (2.4ms) +Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-22 15:30:10 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:30:10 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-22 15:30:10 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:30:10 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:30:10 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:30:10 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:30:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:30:10 -0700 + + +Started POST "/tasks" for ::1 at 2016-04-22 15:30:12 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"dC2CGm3JxJiJ/chOfeCEubW1eX4N3tv3p3SVHs4ak+T4hlJcxE24awV6WdeytkBlxUfKrITvCSQ4yIQKtggEcQ==", "task"=>{"title"=>"add", "description"=>"doesit"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "add"], ["description", "doesit"], ["created_at", "2016-04-22 22:30:12.609015"], ["updated_at", "2016-04-22 22:30:12.609015"]] +  (1.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.3ms) + + +Started GET "/" for ::1 at 2016-04-22 15:30:12 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-22 15:30:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 15:30:48 -0700 +Processing by TasksController#add as HTML + Rendered tasks/_input.html.erb (1.8ms) + Rendered tasks/add.html.erb within layouts/application (3.8ms) +Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 15:30:49 -0700 +Processing by TasksController#add as HTML + Rendered tasks/_input.html.erb (1.5ms) + Rendered tasks/add.html.erb within layouts/application (2.8ms) +Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-22 15:30:49 -0700 + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-22 15:30:49 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:30:49 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:30:49 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:30:49 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:30:49 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:30:49 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:30:49 -0700 + + +Started POST "/tasks" for ::1 at 2016-04-22 15:30:54 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"4rCHNSzVOYypKVhiiNFSvH3UVAsAHMvGFfDPKQydT0duG1dzhVFFfyWuyftHh5ZgDSbn2YktGRWKTN49dI/Y0g==", "task"=>{"title"=>"add", "description"=>"does it work"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "add"], ["description", "does it work"], ["created_at", "2016-04-22 22:30:54.505809"], ["updated_at", "2016-04-22 22:30:54.505809"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-04-22 15:30:54 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 15:31:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 15:31:05 -0700 +Processing by TasksController#add as HTML + Rendered tasks/_input.html.erb (1.4ms) + Rendered tasks/add.html.erb within layouts/application (3.4ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-22 15:31:07 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"UeeprMegJxIlYbby8A4b6IsFaLRN6tybS5Ef367MqHTdTHnqbiRb4anmJ2s/WN80+/fbZsTbDkjULQ7L1t4/4Q==", "task"=>{"title"=>"add", "description"=>"addadd"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "add"], ["description", "addadd"], ["created_at", "2016-04-22 22:31:07.412395"], ["updated_at", "2016-04-22 22:31:07.412395"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-04-22 15:31:07 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/39/edit" for ::1 at 2016-04-22 15:31:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"39"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 39]] + Rendered tasks/_input.html.erb (1.3ms) + Rendered tasks/edit.html.erb within layouts/application (3.3ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/39" for ::1 at 2016-04-22 15:31:10 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"j3Qo+RiPOUU7l2xM+rgIzYSug6LJ9j2hz7jh1PXwDMwD3/i/sQtFtrcQ/dU17swR9FwwcEDH73JQBPDAjeKbWQ==", "task"=>{"title"=>"check", "description"=>"testtest"}, "commit"=>"Update Task", "id"=>"39"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 39]] +  (0.3ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", "check"], ["updated_at", "2016-04-22 22:31:10.306684"], ["id", 39]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.5ms) + + +Started GET "/" for ::1 at 2016-04-22 15:31:10 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 15:41:58 -0700 +Processing by TasksController#add as HTML + Rendered tasks/_input.html.erb (1.2ms) + Rendered tasks/add.html.erb within layouts/application (2.9ms) +Completed 200 OK in 23ms (Views: 22.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 15:41:59 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.1ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/28" for ::1 at 2016-04-22 15:42:02 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"qhcykLRAgnsXSrRY/41xfuZZGl95TEqKvO5EO5KCwMwmvOLWHcT+iJvNJcEw27WilqupjfB9mFkjUlUv6pBXWQ==", "id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 28]] +  (0.0ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 28]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.8ms) + + +Started GET "/" for ::1 at 2016-04-22 15:42:02 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/40" for ::1 at 2016-04-22 15:42:05 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"77MxPIiJsdArcniGeBPZ7S+5IuuMAxR7KVSMeXutHABjGOF6IQ3NI6f16R+3RR0xX0uROQUyxqi26J1tA7+LlQ==", "id"=>"40"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 40]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 40]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 2.1ms) + + +Started GET "/" for ::1 at 2016-04-22 15:42:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/41" for ::1 at 2016-04-22 15:42:06 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"shJrEtOHKXmLD5IEP4MqFpTqpUY4eqmRYo7YaoZlMcs+ubtUegNVigeIA53w1e7K5BgWlLFLe0L9Msl+/nemXg==", "id"=>"41"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 41]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 41]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 2.0ms) + + +Started GET "/" for ::1 at 2016-04-22 15:42:06 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/42" for ::1 at 2016-04-22 15:42:07 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"0p9oBV0+K/KHPi9C4v29jZNRFK2RF+NSgYtqC1negz5eNLhD9LpXAQu5vtstq3lR46OnfxgmMYEeN3sfIcwUqw==", "id"=>"42"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 42]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 42]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-04-22 15:42:07 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 15:42:08 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.7ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/22" for ::1 at 2016-04-22 15:42:11 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"581A6OhBgo5f0Gjv1ToZN4lgXZqmN2x/xuaEubajaxBrZpCuQcX+fdNX+XYabN3r+ZLuSC8GvqxZWpWtzrH8hQ==", "id"=>"22"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 22]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 22]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.9ms) + + +Started GET "/" for ::1 at 2016-04-22 15:42:11 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 15:42:12 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.9ms) +Completed 200 OK in 22ms (Views: 21.1ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/4" for ::1 at 2016-04-22 15:42:15 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"Lsy/L0a3lF5oq4s5bY+RP3geDFbcDpbTmrWFN4g7qHiiZ29p7zPoreQsGqCi2VXjCOy/hFU/RAAFCZQj8Ck/7Q==", "id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 4]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.7ms) + + +Started GET "/" for ::1 at 2016-04-22 15:42:15 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 15:42:49 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (13.8ms) +Completed 200 OK in 39ms (Views: 35.9ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-22 15:42:49 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:42:49 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:42:49 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:42:49 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-22 15:42:49 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:42:49 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:42:49 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:42:49 -0700 + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 15:42:53 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.4ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/31" for ::1 at 2016-04-22 15:42:55 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"zgSRglK87WXPN7bHXcjQxBtUJS+WchX2Kt95deVi5p1Cr0HE+ziRlkOwJ16SnhQYa6aW/R9DxyW1Y2hhnXBxCA==", "id"=>"31"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 31]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 31]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.2ms) + + +Started GET "/" for ::1 at 2016-04-22 15:42:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 15:42:56 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.0ms) +Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/37" for ::1 at 2016-04-22 15:42:59 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"Y59uNqCb9F0Lmrncraphd7QZTZKKHMUZu8oxPuEmztrvNL5wCR+IrocdKEVi/KWrxOv+QAMtF8okdiAqmTRZTw==", "id"=>"37"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 37]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 37]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-04-22 15:42:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 15:52:30 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (1.8ms) +Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-22 15:52:31 -0700 +Processing by TasksController#add as HTML + Rendered tasks/_input.html.erb (2.1ms) + Rendered tasks/add.html.erb within layouts/application (3.8ms) +Completed 200 OK in 30ms (Views: 28.9ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-22 15:52:32 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 30ms (Views: 28.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-22 15:52:32 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (1.9ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.2ms) + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreatePeople (20160422231503) +  (0.1ms) begin transaction +  (0.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160422231503"]] +  (0.6ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "people" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Anna"], ["created_at", "2016-04-22 23:20:04.639889"], ["updated_at", "2016-04-22 23:20:04.639889"]] +  (1.4ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Bryan"], ["created_at", "2016-04-22 23:20:04.644589"], ["updated_at", "2016-04-22 23:20:04.644589"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Mitch"], ["created_at", "2016-04-22 23:20:04.646516"], ["updated_at", "2016-04-22 23:20:04.646516"]] +  (0.6ms) commit transaction + Person Load (1.3ms) SELECT "people".* FROM "people" + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + + +Started GET "/" for ::1 at 2016-04-24 18:31:41 -0700 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (6.8ms) +Completed 200 OK in 265ms (Views: 253.4ms | ActiveRecord: 0.7ms) + + +Started GET "/" for ::1 at 2016-04-24 18:31:41 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/39/edit" for ::1 at 2016-04-24 18:31:45 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"39"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 39]] + Rendered tasks/_input.html.erb (16.8ms) + Rendered tasks/edit.html.erb within layouts/application (21.4ms) +Completed 200 OK in 45ms (Views: 36.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-24 18:31:50 -0700 +Processing by TasksController#add as HTML + Rendered tasks/_input.html.erb (1.6ms) + Rendered tasks/add.html.erb within layouts/application (4.2ms) +Completed 200 OK in 23ms (Views: 21.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-24 18:31:53 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (16.2ms) +Completed 200 OK in 31ms (Views: 30.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-24 18:31:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-24 18:31:56 -0700 +Processing by TasksController#add as HTML + Rendered tasks/_input.html.erb (1.3ms) + Rendered tasks/add.html.erb within layouts/application (2.6ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-24 18:31:57 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (1.9ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-24 18:31:58 -0700 +Processing by TasksController#add as HTML + Rendered tasks/_input.html.erb (1.1ms) + Rendered tasks/add.html.erb within layouts/application (2.4ms) +Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-24 18:31:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/39" for ::1 at 2016-04-24 18:32:00 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"39"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 39]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-24 18:50:43 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.1ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-24 18:50:45 -0700 +Processing by TasksController#add as HTML + Rendered tasks/_input.html.erb (1.4ms) + Rendered tasks/add.html.erb within layouts/application (3.6ms) +Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-24 18:50:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-25 11:04:26 -0700 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (6.8ms) +Completed 200 OK in 329ms (Views: 318.1ms | ActiveRecord: 0.6ms) + + +Started GET "/" for ::1 at 2016-04-25 11:04:27 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 24ms (Views: 22.5ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 11:04:35 -0700 +Processing by TasksController#add as HTML + Rendered tasks/_input.html.erb (16.1ms) + Rendered tasks/add.html.erb within layouts/application (20.7ms) +Completed 200 OK in 44ms (Views: 42.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 11:04:35 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.7ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-25 11:04:36 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 30ms (Views: 29.5ms | ActiveRecord: 0.1ms) + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to AddPersonToTask (20160425180946) +  (0.1ms) begin transaction +  (0.5ms) ALTER TABLE "tasks" ADD "person_id" integer + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160425180946"]] +  (0.5ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + Task Load (1.2ms) SELECT "tasks".* FROM "tasks" + + +Started GET "/" for ::1 at 2016-04-25 11:18:27 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 25ms (Views: 19.7ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 11:18:29 -0700 +Processing by TasksController#add as HTML + Rendered tasks/_input.html.erb (1.5ms) + Rendered tasks/add.html.erb within layouts/application (2.9ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-25 11:18:34 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZNv1a9wSjXUByjd+WIKocEmWXJBOhnNzMdv/LIiihppKmVzU7c+fOHfDft3bgWayx9GSy5f7tf/40+LzbpwaiQ==", "task"=>{"title"=>"Add a person to this task", "description"=>"do it"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Add a person to this task"], ["description", "do it"], ["created_at", "2016-04-25 18:18:34.184440"], ["updated_at", "2016-04-25 18:18:34.184440"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 7ms (ActiveRecord: 1.2ms) + + +Started GET "/" for ::1 at 2016-04-25 11:18:34 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] +  (0.2ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "person_id" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["person_id", 1], ["updated_at", "2016-04-25 18:18:59.371012"], ["id", 43]] +  (1.5ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Person Load (7.8ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? [["person_id", 1]] + + +Started GET "/" for ::1 at 2016-04-25 11:26:16 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 11:26:39 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", nil]] + Rendered tasks/index.html.erb within layouts/application (15.4ms) +Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.5ms) + +ActiveRecord::RecordNotFound - Couldn't find Person with 'id'=: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/views/tasks/index.html.erb:21:in `block in _app_views_tasks_index_html_erb___2498955291228494253_70270133717800' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:15:in `_app_views_tasks_index_html_erb___2498955291228494253_70270133717800' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/109c471c59bb5e72/variables" for ::1 at 2016-04-25 11:26:39 -0700 + + +Started POST "/__better_errors/109c471c59bb5e72/eval" for ::1 at 2016-04-25 11:26:55 -0700 + + +Started GET "/" for ::1 at 2016-04-25 11:27:12 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 28ms (Views: 27.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 11:27:12 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 11:27:12 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 11:27:12 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 11:27:12 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 11:27:12 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 11:27:12 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 11:27:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 11:27:12 -0700 + + +Started GET "/" for ::1 at 2016-04-25 11:27:26 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", nil]] + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.2ms) + +ActiveRecord::RecordNotFound - Couldn't find Person with 'id'=: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/views/tasks/index.html.erb:21:in `block in _app_views_tasks_index_html_erb___2498955291228494253_70270175705460' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:15:in `_app_views_tasks_index_html_erb___2498955291228494253_70270175705460' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/5b4bf294d0bf485e/variables" for ::1 at 2016-04-25 11:27:26 -0700 + + +Started POST "/__better_errors/5b4bf294d0bf485e/eval" for ::1 at 2016-04-25 11:27:31 -0700 + + +Started GET "/" for ::1 at 2016-04-25 11:27:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", nil]] + Rendered tasks/index.html.erb within layouts/application (5.0ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.3ms) + +ActiveRecord::RecordNotFound - Couldn't find Person with 'id'=: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/views/tasks/index.html.erb:22:in `block in _app_views_tasks_index_html_erb___2498955291228494253_70270179114120' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:15:in `_app_views_tasks_index_html_erb___2498955291228494253_70270179114120' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/de78eebd168e8e81/variables" for ::1 at 2016-04-25 11:27:56 -0700 + + +Started GET "/" for ::1 at 2016-04-25 11:27:57 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", nil]] + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.2ms) + +ActiveRecord::RecordNotFound - Couldn't find Person with 'id'=: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/views/tasks/index.html.erb:22:in `block in _app_views_tasks_index_html_erb___2498955291228494253_70270179114120' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:15:in `_app_views_tasks_index_html_erb___2498955291228494253_70270179114120' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a9e81e2a0a668d64/variables" for ::1 at 2016-04-25 11:27:57 -0700 + + +Started POST "/__better_errors/a9e81e2a0a668d64/eval" for ::1 at 2016-04-25 11:28:00 -0700 + + +Started POST "/__better_errors/a9e81e2a0a668d64/eval" for ::1 at 2016-04-25 11:28:03 -0700 + + +Started POST "/__better_errors/a9e81e2a0a668d64/eval" for ::1 at 2016-04-25 11:28:09 -0700 + + +Started POST "/__better_errors/a9e81e2a0a668d64/eval" for ::1 at 2016-04-25 11:28:10 -0700 + + +Started POST "/__better_errors/a9e81e2a0a668d64/eval" for ::1 at 2016-04-25 11:28:14 -0700 + + +Started GET "/" for ::1 at 2016-04-25 11:28:50 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 11:28:50 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 11:28:50 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 11:28:50 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 11:28:50 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 11:28:50 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 11:28:50 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 11:28:50 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 11:28:50 -0700 + + +Started GET "/" for ::1 at 2016-04-25 11:28:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 11:28:58 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 11:28:58 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 11:28:58 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 11:28:58 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 11:28:58 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 11:28:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 11:28:58 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 11:28:58 -0700 + + +Started GET "/" for ::1 at 2016-04-25 11:30:54 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 11:30:54 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 11:30:54 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 11:30:54 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 11:30:54 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 11:30:54 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 11:30:54 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 11:30:54 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 11:30:54 -0700 + + +Started GET "/" for ::1 at 2016-04-25 11:30:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/43" for ::1 at 2016-04-25 11:30:56 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 21ms (Views: 19.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 12:43:12 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 12:43:14 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (1.9ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 12:43:15 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 12:43:16 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (1.8ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-25 12:43:17 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 12:43:20 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.0ms) +Completed 200 OK in 19ms (Views: 18.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-25 12:43:20 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 12:43:23 -0700 +Processing by TasksController#add as HTML + Rendered tasks/_input.html.erb (1.6ms) + Rendered tasks/add.html.erb within layouts/application (3.2ms) +Completed 200 OK in 19ms (Views: 19.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-25 12:43:24 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-25 14:50:33 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (8.3ms) +Completed 200 OK in 27ms (Views: 25.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 14:50:33 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 14:50:33 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 14:50:33 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 14:50:33 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 14:50:33 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 14:50:33 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 14:50:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 14:50:33 -0700 + + +Started GET "/" for ::1 at 2016-04-25 14:50:34 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 14:50:35 -0700 +Processing by TasksController#add as HTML + Rendered tasks/_input.html.erb (1.9ms) + Rendered tasks/add.html.erb within layouts/application (3.5ms) +Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-25 14:50:35 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 14:54:03 -0700 +Processing by TasksController#add as HTML + Rendered tasks/_input.html.erb (1.4ms) + Rendered tasks/add.html.erb within layouts/application (3.1ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 14:55:02 -0700 +Processing by TasksController#add as HTML + Rendered tasks/_input.html.erb (4.7ms) + Rendered tasks/add.html.erb within layouts/application (6.0ms) +Completed 200 OK in 20ms (Views: 19.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 14:55:02 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 14:55:02 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 14:55:02 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 14:55:02 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 14:55:02 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 14:55:02 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 14:55:02 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 14:55:02 -0700 + + +Started GET "/" for ::1 at 2016-04-25 14:55:02 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/43" for ::1 at 2016-04-25 14:55:04 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 22ms (Views: 21.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 14:55:05 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Rendered tasks/_input.html.erb (2.5ms) + Rendered tasks/edit.html.erb within layouts/application (4.3ms) +Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 14:56:14 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Rendered tasks/_input.html.erb (5.8ms) + Rendered tasks/edit.html.erb within layouts/application (7.2ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `find' for :Person:Symbol: + app/views/tasks/_input.html.erb:13:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270176819920' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270176819920' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/6aac792bcc2c317c/variables" for ::1 at 2016-04-25 14:56:14 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 14:56:19 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", nil]] + Rendered tasks/_input.html.erb (6.8ms) + Rendered tasks/edit.html.erb within layouts/application (8.0ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.2ms) + +ActiveRecord::RecordNotFound - Couldn't find Person with 'id'=person_id: + activerecord (4.2.6) lib/active_record/relation/finder_methods.rb:324:in `raise_record_not_found_exception!' + activerecord (4.2.6) lib/active_record/relation/finder_methods.rb:444:in `find_one' + activerecord (4.2.6) lib/active_record/relation/finder_methods.rb:423:in `find_with_ids' + activerecord (4.2.6) lib/active_record/relation/finder_methods.rb:71:in `find' + activerecord (4.2.6) lib/active_record/querying.rb:3:in `find' + activerecord (4.2.6) lib/active_record/core.rb:130:in `find' + app/views/tasks/_input.html.erb:13:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270175732800' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270175732800' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/9719169d3edce950/variables" for ::1 at 2016-04-25 14:56:19 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 14:56:21 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", nil]] + Rendered tasks/_input.html.erb (5.1ms) + Rendered tasks/edit.html.erb within layouts/application (6.1ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.2ms) + +ActiveRecord::RecordNotFound - Couldn't find Person with 'id'=person_id: + activerecord (4.2.6) lib/active_record/relation/finder_methods.rb:324:in `raise_record_not_found_exception!' + activerecord (4.2.6) lib/active_record/relation/finder_methods.rb:444:in `find_one' + activerecord (4.2.6) lib/active_record/relation/finder_methods.rb:423:in `find_with_ids' + activerecord (4.2.6) lib/active_record/relation/finder_methods.rb:71:in `find' + activerecord (4.2.6) lib/active_record/querying.rb:3:in `find' + activerecord (4.2.6) lib/active_record/core.rb:130:in `find' + app/views/tasks/_input.html.erb:13:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270175732800' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270175732800' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/fa2288f733ef7f6a/variables" for ::1 at 2016-04-25 14:56:21 -0700 + + +Started POST "/__better_errors/fa2288f733ef7f6a/eval" for ::1 at 2016-04-25 14:56:27 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 14:56:38 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Rendered tasks/_input.html.erb (14.3ms) + Rendered tasks/edit.html.erb within layouts/application (15.4ms) +Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `person_id' for #: + app/views/tasks/_input.html.erb:12:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270175559520' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270175559520' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e3e648133c27a142/variables" for ::1 at 2016-04-25 14:56:38 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 14:57:00 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", nil]] + Rendered tasks/_input.html.erb (5.2ms) + Rendered tasks/edit.html.erb within layouts/application (6.2ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.2ms) + +ActiveRecord::RecordNotFound - Couldn't find Person with 'id'=person_id: + activerecord (4.2.6) lib/active_record/relation/finder_methods.rb:324:in `raise_record_not_found_exception!' + activerecord (4.2.6) lib/active_record/relation/finder_methods.rb:444:in `find_one' + activerecord (4.2.6) lib/active_record/relation/finder_methods.rb:423:in `find_with_ids' + activerecord (4.2.6) lib/active_record/relation/finder_methods.rb:71:in `find' + activerecord (4.2.6) lib/active_record/querying.rb:3:in `find' + activerecord (4.2.6) lib/active_record/core.rb:130:in `find' + app/views/tasks/_input.html.erb:13:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270175967240' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270175967240' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c9c03def30b0b747/variables" for ::1 at 2016-04-25 14:57:00 -0700 + + +Started POST "/__better_errors/c9c03def30b0b747/eval" for ::1 at 2016-04-25 14:57:05 -0700 + + +Started POST "/__better_errors/c9c03def30b0b747/eval" for ::1 at 2016-04-25 14:57:09 -0700 + + +Started POST "/__better_errors/c9c03def30b0b747/eval" for ::1 at 2016-04-25 14:57:12 -0700 + + +Started POST "/__better_errors/c9c03def30b0b747/eval" for ::1 at 2016-04-25 14:57:23 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 14:57:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Rendered tasks/_input.html.erb (27.1ms) + Rendered tasks/edit.html.erb within layouts/application (28.2ms) +Completed 500 Internal Server Error in 32ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `task' for #<#:0x007fd21612f648>: + app/views/tasks/_input.html.erb:18:in `_app_views_tasks__input_html_erb__2612440471482805124_70270145050140' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f71ad930b1c0805f/variables" for ::1 at 2016-04-25 14:57:59 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 14:58:00 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Rendered tasks/_input.html.erb (31.3ms) + Rendered tasks/edit.html.erb within layouts/application (32.4ms) +Completed 500 Internal Server Error in 37ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `task' for #<#:0x007fd219c4e788>: + app/views/tasks/_input.html.erb:18:in `_app_views_tasks__input_html_erb__2612440471482805124_70270145050140' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c4e60ebd892b4984/variables" for ::1 at 2016-04-25 14:58:00 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 14:58:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Rendered tasks/_input.html.erb (2.5ms) + Rendered tasks/edit.html.erb within layouts/application (3.8ms) +Completed 200 OK in 23ms (Views: 21.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 14:58:08 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 14:58:08 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 14:58:08 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 14:58:08 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 14:58:08 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 14:58:08 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 14:58:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 14:58:08 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-25 14:58:18 -0700 +Processing by TasksController#add as HTML + Rendered tasks/_input.html.erb (2.1ms) + Rendered tasks/add.html.erb within layouts/application (3.6ms) +Completed 200 OK in 22ms (Views: 21.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-25 14:58:18 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 33ms (Views: 31.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/43" for ::1 at 2016-04-25 14:58:19 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 14:58:21 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Rendered tasks/_input.html.erb (1.4ms) + Rendered tasks/edit.html.erb within layouts/application (2.8ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 14:59:44 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", nil]] + Rendered tasks/_input.html.erb (6.0ms) + Rendered tasks/edit.html.erb within layouts/application (7.0ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.2ms) + +ActiveRecord::RecordNotFound - Couldn't find Person with 'id'=person_id: + activerecord (4.2.6) lib/active_record/relation/finder_methods.rb:324:in `raise_record_not_found_exception!' + activerecord (4.2.6) lib/active_record/relation/finder_methods.rb:444:in `find_one' + activerecord (4.2.6) lib/active_record/relation/finder_methods.rb:423:in `find_with_ids' + activerecord (4.2.6) lib/active_record/relation/finder_methods.rb:71:in `find' + activerecord (4.2.6) lib/active_record/querying.rb:3:in `find' + activerecord (4.2.6) lib/active_record/core.rb:130:in `find' + app/views/tasks/_input.html.erb:13:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270174449180' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270174449180' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f0141856b50c084e/variables" for ::1 at 2016-04-25 14:59:44 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:00:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/_input.html.erb (10.0ms) + Rendered tasks/edit.html.erb within layouts/application (11.0ms) +Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `Anna' for #: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + actionview (4.2.6) lib/action_view/helpers/tags/base.rb:28:in `value' + actionview (4.2.6) lib/action_view/helpers/tags/base.rb:38:in `value_before_type_cast' + actionview (4.2.6) lib/action_view/helpers/tags/text_field.rb:13:in `block in render' + actionview (4.2.6) lib/action_view/helpers/tags/text_field.rb:13:in `render' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:787:in `text_field' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:1323:in `text_field' + app/views/tasks/_input.html.erb:13:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270174375120' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270174375120' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c42d8fea24ffe49d/variables" for ::1 at 2016-04-25 15:00:08 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:00:27 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/_input.html.erb (17.0ms) + Rendered tasks/edit.html.erb within layouts/application (18.5ms) +Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `#' for #: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + actionview (4.2.6) lib/action_view/helpers/tags/base.rb:28:in `value' + actionview (4.2.6) lib/action_view/helpers/tags/base.rb:38:in `value_before_type_cast' + actionview (4.2.6) lib/action_view/helpers/tags/text_field.rb:13:in `block in render' + actionview (4.2.6) lib/action_view/helpers/tags/text_field.rb:13:in `render' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:787:in `text_field' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:1323:in `text_field' + app/views/tasks/_input.html.erb:13:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270153856560' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270153856560' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/342d65735822cc08/variables" for ::1 at 2016-04-25 15:00:27 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:00:29 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/_input.html.erb (15.0ms) + Rendered tasks/edit.html.erb within layouts/application (16.2ms) +Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `#' for #: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + actionview (4.2.6) lib/action_view/helpers/tags/base.rb:28:in `value' + actionview (4.2.6) lib/action_view/helpers/tags/base.rb:38:in `value_before_type_cast' + actionview (4.2.6) lib/action_view/helpers/tags/text_field.rb:13:in `block in render' + actionview (4.2.6) lib/action_view/helpers/tags/text_field.rb:13:in `render' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:787:in `text_field' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:1323:in `text_field' + app/views/tasks/_input.html.erb:13:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270153856560' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270153856560' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4dd4c3a6da716d9b/variables" for ::1 at 2016-04-25 15:00:29 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:00:35 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/_input.html.erb (7.4ms) + Rendered tasks/edit.html.erb within layouts/application (8.5ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `Anna' for #: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + actionview (4.2.6) lib/action_view/helpers/tags/base.rb:28:in `value' + actionview (4.2.6) lib/action_view/helpers/tags/base.rb:38:in `value_before_type_cast' + actionview (4.2.6) lib/action_view/helpers/tags/text_field.rb:13:in `block in render' + actionview (4.2.6) lib/action_view/helpers/tags/text_field.rb:13:in `render' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:787:in `text_field' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:1323:in `text_field' + app/views/tasks/_input.html.erb:13:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270175672800' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270175672800' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e1db3c9f6768047d/variables" for ::1 at 2016-04-25 15:00:35 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:00:51 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/_input.html.erb (3.7ms) + Rendered tasks/edit.html.erb within layouts/application (4.8ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.2ms) + +ArgumentError - wrong number of arguments (given 1, expected 2..3): + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:786:in `text_field' + app/views/tasks/_input.html.erb:13:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270133690020' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270133690020' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4ff3ce05b61a4cd8/variables" for ::1 at 2016-04-25 15:00:51 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:00:52 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/_input.html.erb (3.6ms) + Rendered tasks/edit.html.erb within layouts/application (4.8ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.2ms) + +ArgumentError - wrong number of arguments (given 1, expected 2..3): + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:786:in `text_field' + app/views/tasks/_input.html.erb:13:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270133690020' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270133690020' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/9df865ea122dbfe6/variables" for ::1 at 2016-04-25 15:00:52 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:00:57 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/_input.html.erb (8.1ms) + Rendered tasks/edit.html.erb within layouts/application (9.7ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `Anna' for #: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + actionview (4.2.6) lib/action_view/helpers/tags/base.rb:28:in `value' + actionview (4.2.6) lib/action_view/helpers/tags/base.rb:38:in `value_before_type_cast' + actionview (4.2.6) lib/action_view/helpers/tags/text_field.rb:13:in `block in render' + actionview (4.2.6) lib/action_view/helpers/tags/text_field.rb:13:in `render' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:787:in `text_field' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:1323:in `text_field' + app/views/tasks/_input.html.erb:13:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270176228820' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270176228820' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/13c367f95e2e0fd2/variables" for ::1 at 2016-04-25 15:00:57 -0700 + + +Started POST "/__better_errors/13c367f95e2e0fd2/eval" for ::1 at 2016-04-25 15:01:13 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:01:26 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Rendered tasks/_input.html.erb (1.4ms) + Rendered tasks/edit.html.erb within layouts/application (2.5ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +SyntaxError - syntax error, unexpected '(', expecting tSTRING_CONTENT or tSTRING_DBEG or tSTRING_DVAR or tSTRING_END +...buffer.append=( t.text_field :(Person.find(num).name) );@out... +... ^ +/Users/annamason/C5/projects/TaskListRails/task-list/app/views/tasks/_input.html.erb:13: syntax error, unexpected ')', expecting keyword_end +...ield :(Person.find(num).name) );@output_buffer.safe_append=' +... ^: + app/views/tasks/_input.html.erb:13:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/934f3700c5ef1b7f/variables" for ::1 at 2016-04-25 15:01:26 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:01:27 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Rendered tasks/_input.html.erb (0.9ms) + Rendered tasks/edit.html.erb within layouts/application (1.9ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +SyntaxError - syntax error, unexpected '(', expecting tSTRING_CONTENT or tSTRING_DBEG or tSTRING_DVAR or tSTRING_END +...buffer.append=( t.text_field :(Person.find(num).name) );@out... +... ^ +/Users/annamason/C5/projects/TaskListRails/task-list/app/views/tasks/_input.html.erb:13: syntax error, unexpected ')', expecting keyword_end +...ield :(Person.find(num).name) );@output_buffer.safe_append=' +... ^: + app/views/tasks/_input.html.erb:13:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/09033f1d03e1f85b/variables" for ::1 at 2016-04-25 15:01:27 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:01:33 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/_input.html.erb (6.6ms) + Rendered tasks/edit.html.erb within layouts/application (7.6ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `Anna' for #: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + actionview (4.2.6) lib/action_view/helpers/tags/base.rb:28:in `value' + actionview (4.2.6) lib/action_view/helpers/tags/base.rb:38:in `value_before_type_cast' + actionview (4.2.6) lib/action_view/helpers/tags/text_field.rb:13:in `block in render' + actionview (4.2.6) lib/action_view/helpers/tags/text_field.rb:13:in `render' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:787:in `text_field' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:1323:in `text_field' + app/views/tasks/_input.html.erb:13:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270132942480' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270132942480' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/5740d17527664992/variables" for ::1 at 2016-04-25 15:01:33 -0700 + + +Started POST "/__better_errors/5740d17527664992/eval" for ::1 at 2016-04-25 15:01:40 -0700 + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + + +Started POST "/__better_errors/5740d17527664992/eval" for ::1 at 2016-04-25 15:01:45 -0700 + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + + +Started POST "/__better_errors/5740d17527664992/eval" for ::1 at 2016-04-25 15:01:53 -0700 + + +Started POST "/__better_errors/5740d17527664992/eval" for ::1 at 2016-04-25 15:03:06 -0700 + + +Started POST "/__better_errors/5740d17527664992/eval" for ::1 at 2016-04-25 15:03:08 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:03:50 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/_input.html.erb (6.7ms) + Rendered tasks/edit.html.erb within layouts/application (8.3ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.4ms) + +NoMethodError - undefined method `Anna' for #: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + actionview (4.2.6) lib/action_view/helpers/tags/base.rb:28:in `value' + actionview (4.2.6) lib/action_view/helpers/tags/base.rb:38:in `value_before_type_cast' + actionview (4.2.6) lib/action_view/helpers/tags/text_field.rb:13:in `block in render' + actionview (4.2.6) lib/action_view/helpers/tags/text_field.rb:13:in `render' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:787:in `text_field' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:1323:in `text_field' + app/views/tasks/_input.html.erb:13:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270174916920' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270174916920' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f154f3971589b549/variables" for ::1 at 2016-04-25 15:03:50 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:04:11 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/_input.html.erb (3.6ms) + Rendered tasks/edit.html.erb within layouts/application (4.6ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.2ms) + +ArgumentError - wrong number of arguments (given 1, expected 2..3): + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:786:in `text_field' + app/views/tasks/_input.html.erb:13:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270145755580' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270145755580' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/d0a52848aba44967/variables" for ::1 at 2016-04-25 15:04:11 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:08:45 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/_input.html.erb (15.6ms) + Rendered tasks/edit.html.erb within layouts/application (17.0ms) +Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.3ms) + +NoMethodError - undefined method `name' for #: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + actionview (4.2.6) lib/action_view/helpers/tags/base.rb:28:in `value' + actionview (4.2.6) lib/action_view/helpers/tags/base.rb:38:in `value_before_type_cast' + actionview (4.2.6) lib/action_view/helpers/tags/text_field.rb:13:in `block in render' + actionview (4.2.6) lib/action_view/helpers/tags/text_field.rb:13:in `render' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:787:in `text_field' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:1323:in `text_field' + app/views/tasks/_input.html.erb:13:in `block (2 levels) in _app_views_tasks__input_html_erb__2612440471482805124_70270174900380' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:714:in `fields_for' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:1599:in `fields_for' + app/views/tasks/_input.html.erb:12:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270174900380' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270174900380' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f535b98a596fbe1d/variables" for ::1 at 2016-04-25 15:08:45 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:08:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/_input.html.erb (35.0ms) + Rendered tasks/edit.html.erb within layouts/application (44.2ms) +Completed 500 Internal Server Error in 48ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `current_user' for #<#:0x007fd219d5be50> +Did you mean? current_page?: + app/views/tasks/_input.html.erb:20:in `_app_views_tasks__input_html_erb__2612440471482805124_70270176647140' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/212b12762e7109b3/variables" for ::1 at 2016-04-25 15:08:55 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:09:06 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/_input.html.erb (3.0ms) + Rendered tasks/edit.html.erb within layouts/application (4.0ms) +Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:09:06 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:09:06 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:09:06 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:09:06 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:09:06 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:09:06 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:09:06 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:09:06 -0700 + + +Started PATCH "/tasks/43" for ::1 at 2016-04-25 15:09:28 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"0JiguwwYcosIX0vKbMTcd5f6n6SihubzK5tMTNTr4BT+2gkEPcVgxn5WAmnvxxK1Gb1R/3v7IH/ik1GTMtV8Bw==", "task"=>{"title"=>"Add a person to this task", "description"=>"do it", "person"=>{"name"=>"Bryan"}}, "commit"=>"Update Task", "id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 15:09:28 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/43" for ::1 at 2016-04-25 15:09:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:09:32 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/_input.html.erb (2.8ms) + Rendered tasks/edit.html.erb within layouts/application (4.2ms) +Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/43" for ::1 at 2016-04-25 15:09:35 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"PfVJm1XjHwJMMtp4VnsyCffDd3FAt6WUbABI1ujCogITt+AkZD4NTzo7k9vVePzLeYS5KpnKYxilCFUJDvw+EQ==", "task"=>{"title"=>"Add a person to this task", "description"=>"do it", "person"=>{"name"=>"Bryan"}}, "commit"=>"Update Task", "id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 15:09:35 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 23ms (Views: 22.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 15:10:41 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 20ms (Views: 18.7ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 15:10:43 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/43" for ::1 at 2016-04-25 15:10:44 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:10:47 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/_input.html.erb (2.6ms) + Rendered tasks/edit.html.erb within layouts/application (4.6ms) +Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:12:39 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (31.9ms) + Rendered tasks/edit.html.erb within layouts/application (33.2ms) +Completed 500 Internal Server Error in 46ms (ActiveRecord: 1.0ms) + +NameError - undefined local variable or method `f' for #<#:0x007fd21a313780>: + app/views/tasks/_input.html.erb:18:in `_app_views_tasks__input_html_erb__2612440471482805124_70270179595340' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/cc93856901ebe983/variables" for ::1 at 2016-04-25 15:12:39 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:12:45 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (3.0ms) + Rendered tasks/edit.html.erb within layouts/application (4.0ms) +Completed 200 OK in 31ms (Views: 29.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:12:45 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:12:45 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:12:45 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:12:45 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:12:45 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:12:45 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:12:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:12:45 -0700 + + +Started PATCH "/tasks/43" for ::1 at 2016-04-25 15:13:00 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"84X7w8fG3rYdJ2WbttqdC90UUqu5QbS+AJivCchStOPdx1J89hvM+2suLDg12VPJU1Oc8GA8cjLJkLLWLmwo8A==", "task"=>{"title"=>"Add a person to this task", "description"=>"do it", "person_id"=>"1"}, "commit"=>"Update Task", "id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] +  (0.2ms) begin transaction +  (0.2ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 7ms (ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-25 15:13:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 23ms (Views: 20.4ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:13:02 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (3.5ms) + Rendered tasks/edit.html.erb within layouts/application (4.9ms) +Completed 200 OK in 23ms (Views: 21.5ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/43" for ::1 at 2016-04-25 15:13:04 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"gSoHRV7QqaoRgVACWnHHxYAJS3eG0/J37Nt9IsZAV1qvaK76bw2752eIGaHZcgkHDk6FLF+uNPsl02D9IH7LSQ==", "task"=>{"title"=>"Add a person to this task", "description"=>"do it", "person_id"=>"3"}, "commit"=>"Update Task", "id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 15:13:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (6.9ms) +Completed 200 OK in 53ms (Views: 51.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:13:07 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (6.2ms) + Rendered tasks/edit.html.erb within layouts/application (9.2ms) +Completed 200 OK in 37ms (Views: 34.6ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:13:31 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (4.3ms) + Rendered tasks/edit.html.erb within layouts/application (5.6ms) +Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:13:31 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:13:31 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:13:31 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:13:31 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:13:31 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:13:31 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:13:31 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:13:31 -0700 + + +Started PATCH "/tasks/43" for ::1 at 2016-04-25 15:13:38 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"hPUhPSCCkVvQ9sBkx2Prx6gfWcCG32bAUeOHTZsZOP6qt4iCEV+DFqb/icdEYCUFJliXm1+ioEyY65qSfSek7Q==", "task"=>{"title"=>"Add a person to this task", "description"=>"do it", "person_id"=>"3"}, "commit"=>"Update Task", "id"=>"43"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-25 15:13:38 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:13:39 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (3.2ms) + Rendered tasks/edit.html.erb within layouts/application (5.0ms) +Completed 200 OK in 23ms (Views: 21.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/43" for ::1 at 2016-04-25 15:13:41 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"pbTV1l/eUnWdzL0C7uow98LGo6KKw65M7xSxgqgb6+eL9nxpbgNAOOvF9KFt6f41TIFt+VO+aMAmHKxdTiV39A==", "task"=>{"title"=>"Add a person to this task", "description"=>"do it", "person_id"=>"2"}, "commit"=>"Update Task", "id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 15:13:41 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (8.2ms) +Completed 200 OK in 71ms (Views: 70.0ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/43" for ::1 at 2016-04-25 15:13:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:13:44 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (3.1ms) + Rendered tasks/edit.html.erb within layouts/application (4.6ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/43" for ::1 at 2016-04-25 15:13:51 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"VQO3JPFrpJxBY4w0YHlIUYyJ+UupTXgs+qZzz7ncVyl7QR6bwLa20TdqxZfjeoaTAs43EHAwvqAzrm4QX+LLOg==", "task"=>{"title"=>"Add a person to this task", "description"=>"do it", "person_id"=>"3"}, "commit"=>"Update Task", "id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] +  (0.0ms) begin transaction +  (0.2ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-25 15:13:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 20ms (Views: 18.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:14:07 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.7ms) + Rendered tasks/edit.html.erb within layouts/application (4.5ms) +Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/43" for ::1 at 2016-04-25 15:14:09 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qr9nd+4iAzaS2hlQyGJkw9vkE31Dr62zvvtACqD61ZiE/c7I3/8Re+TTUPNLYaoBVaPdJprSaz93813VRsRJiw==", "task"=>{"title"=>"Add a person to this task", "description"=>"do it", "person_id"=>"2"}, "commit"=>"Update Task", "id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 15:14:09 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 24ms (Views: 22.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 15:14:50 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (14.9ms) +Completed 200 OK in 32ms (Views: 29.5ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:14:52 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (3.3ms) + Rendered tasks/edit.html.erb within layouts/application (4.7ms) +Completed 200 OK in 22ms (Views: 20.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/43" for ::1 at 2016-04-25 15:14:54 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"zttZXRDKVDFfRY64jrboIYLxfTMu0mNZ6YrwzJ4fuyvgmfDiIRdGfClMxxsNtSbjDLazaPevpdUggu0TeCEnOA==", "task"=>{"title"=>"Add a person to this task", "description"=>"do it", "person_id"=>"3"}, "commit"=>"Update Task", "id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] +  (0.1ms) begin transaction + SQL (0.8ms) UPDATE "tasks" SET "person_id" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["person_id", 3], ["updated_at", "2016-04-25 22:14:54.141399"], ["id", 43]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 11ms (ActiveRecord: 3.3ms) + + +Started GET "/" for ::1 at 2016-04-25 15:14:54 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/index.html.erb within layouts/application (5.4ms) +Completed 200 OK in 27ms (Views: 25.6ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:15:11 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (4.7ms) + Rendered tasks/edit.html.erb within layouts/application (6.3ms) +Completed 200 OK in 30ms (Views: 22.1ms | ActiveRecord: 0.7ms) + + +Started PATCH "/tasks/43" for ::1 at 2016-04-25 15:15:14 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"+aVASBMiZuYIzjFhsOW+bSzakxfHusRWRHHFELTbXinX5+n3Iv90q37HeMIz5nCvop1dTB7HAtqNedjPUuXCOg==", "task"=>{"title"=>"Add a person to this task", "description"=>"do it", "person_id"=>"2"}, "commit"=>"Update Task", "id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "person_id" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["person_id", 2], ["updated_at", "2016-04-25 22:15:14.339549"], ["id", 43]] +  (1.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.7ms) + + +Started GET "/" for ::1 at 2016-04-25 15:15:14 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 15:15:16 -0700 +Processing by TasksController#add as HTML + Rendered tasks/_input.html.erb (4.5ms) + Rendered tasks/add.html.erb within layouts/application (6.3ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `map' for nil:NilClass +Did you mean? tap: + actionview (4.2.6) lib/action_view/helpers/form_options_helper.rb:394:in `options_from_collection_for_select' + app/views/tasks/_input.html.erb:12:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270145647940' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270145647940' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/add.html.erb:3:in `_app_views_tasks_add_html_erb___3550637896471530469_70270175256960' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasks/add" for ::1 at 2016-04-25 15:15:16 -0700 +Processing by TasksController#add as HTML + Rendered tasks/_input.html.erb (4.0ms) + Rendered tasks/add.html.erb within layouts/application (5.0ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `map' for nil:NilClass +Did you mean? tap: + actionview (4.2.6) lib/action_view/helpers/form_options_helper.rb:394:in `options_from_collection_for_select' + app/views/tasks/_input.html.erb:12:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270175821500' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270175821500' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/add.html.erb:3:in `_app_views_tasks_add_html_erb___3550637896471530469_70270174322140' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/41af481dc9bbaeb2/variables" for ::1 at 2016-04-25 15:15:16 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-25 15:15:50 -0700 +Processing by TasksController#add as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (9.2ms) + Rendered tasks/add.html.erb within layouts/application (10.5ms) +Completed 200 OK in 48ms (Views: 32.5ms | ActiveRecord: 1.5ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:15:50 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:15:51 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:15:51 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:15:51 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:15:51 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:15:51 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:15:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:15:51 -0700 + + +Started POST "/tasks" for ::1 at 2016-04-25 15:16:00 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"9aEy6ohuiIeC2T+eRx23o1nFKkj2O1XI79jQjaSc06jb45tVubOayvTQdj3EHnlh14LkEy9Gk0Qm0M1SQqJPuw==", "task"=>{"title"=>"New Task with person", "description"=>"does it work", "person_id"=>"3"}, "commit"=>"Create Task"} +Unpermitted parameter: person_id +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "New Task with person"], ["description", "does it work"], ["created_at", "2016-04-25 22:16:00.957934"], ["updated_at", "2016-04-25 22:16:00.957934"]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 7ms (ActiveRecord: 1.8ms) + + +Started GET "/" for ::1 at 2016-04-25 15:16:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.4ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (8.3ms) +Completed 200 OK in 32ms (Views: 31.0ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks/44" for ::1 at 2016-04-25 15:16:23 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"44"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 44]] + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 24ms (Views: 22.3ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 15:16:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (10.5ms) +Completed 200 OK in 29ms (Views: 25.7ms | ActiveRecord: 0.8ms) + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:16:59 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:16:59 -0700 + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:16:59 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:16:59 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:16:59 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:16:59 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:16:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:16:59 -0700 + + +Started DELETE "/tasks/44" for ::1 at 2016-04-25 15:17:02 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"XU9YqSTiDpRcDe4HhxRyx5BjXterylJngQY4jwNLaWBzDfEWFT8c2SoEp6QEF7wFHiSQjHK3lOtIDiVQ5XX1cw==", "id"=>"44"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 44]] +  (0.3ms) begin transaction + SQL (0.8ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 44]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 7ms (ActiveRecord: 2.8ms) + + +Started GET "/" for ::1 at 2016-04-25 15:17:02 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 15:17:03 -0700 +Processing by TasksController#add as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (3.5ms) + Rendered tasks/add.html.erb within layouts/application (5.1ms) +Completed 200 OK in 19ms (Views: 18.6ms | ActiveRecord: 0.2ms) + + +Started POST "/tasks" for ::1 at 2016-04-25 15:17:12 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"FfpgakEMj5rCP38fTGMYTc+8hguqz3e2IepURrNO0qM7uMnVcNGd17Q2NrzPYNaPQftIUHOysTro4kmZVXBOsA==", "task"=>{"title"=>"new task with person", "description"=>"do it plz just do it", "person_id"=>"3"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("title", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "new task with person"], ["description", "do it plz just do it"], ["person_id", 3], ["created_at", "2016-04-25 22:17:12.317437"], ["updated_at", "2016-04-25 22:17:12.317437"]] +  (1.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 7ms (ActiveRecord: 1.5ms) + + +Started GET "/" for ::1 at 2016-04-25 15:17:12 -0700 +Processing by TasksController#index as HTML + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/index.html.erb within layouts/application (7.1ms) +Completed 200 OK in 26ms (Views: 24.2ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:18:30 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (5.1ms) + Rendered tasks/edit.html.erb within layouts/application (6.8ms) +Completed 200 OK in 31ms (Views: 23.1ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks/45/edit" for ::1 at 2016-04-25 15:18:33 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"45"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 45]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (3.8ms) + Rendered tasks/edit.html.erb within layouts/application (5.2ms) +Completed 200 OK in 28ms (Views: 26.3ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/45" for ::1 at 2016-04-25 15:18:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"45"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 45]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/45/edit" for ::1 at 2016-04-25 15:18:40 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"45"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 45]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.3ms) + Rendered tasks/edit.html.erb within layouts/application (3.8ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/45/edit" for ::1 at 2016-04-25 15:19:07 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"45"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 45]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (13.1ms) + Rendered tasks/edit.html.erb within layouts/application (14.3ms) +Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `hello' for #: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + actionview (4.2.6) lib/action_view/helpers/tags/base.rb:28:in `value' + actionview (4.2.6) lib/action_view/helpers/tags/select.rb:16:in `block in render' + actionview (4.2.6) lib/action_view/helpers/tags/select.rb:16:in `render' + actionview (4.2.6) lib/action_view/helpers/form_options_helper.rb:163:in `select' + actionview (4.2.6) lib/action_view/helpers/form_options_helper.rb:777:in `select' + app/views/tasks/_input.html.erb:12:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270128854560' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270128854560' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ce7cdac0d87c4095/variables" for ::1 at 2016-04-25 15:19:07 -0700 + + +Started GET "/tasks/45/edit" for ::1 at 2016-04-25 15:19:11 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"45"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 45]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (3.5ms) + Rendered tasks/edit.html.erb within layouts/application (4.5ms) +Completed 200 OK in 23ms (Views: 21.3ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:19:11 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:19:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:19:11 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:19:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:19:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:19:11 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:19:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:19:11 -0700 + + +Started GET "/tasks/45/edit" for ::1 at 2016-04-25 15:19:57 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"45"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 45]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (3.3ms) + Rendered tasks/edit.html.erb within layouts/application (4.2ms) +Completed 200 OK in 25ms (Views: 23.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:19:57 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:19:57 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:19:57 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:19:57 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:19:57 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:19:57 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:19:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:19:57 -0700 + + +Started GET "/tasks/45/edit" for ::1 at 2016-04-25 15:20:09 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"45"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 45]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.7ms) + Rendered tasks/edit.html.erb within layouts/application (3.8ms) +Completed 200 OK in 22ms (Views: 21.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:20:09 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:20:09 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:20:09 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:20:09 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:20:09 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:20:09 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:20:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:20:09 -0700 + + +Started GET "/" for ::1 at 2016-04-25 15:20:10 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:20:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.4ms) + Rendered tasks/edit.html.erb within layouts/application (3.8ms) +Completed 200 OK in 21ms (Views: 19.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 15:20:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/45/edit" for ::1 at 2016-04-25 15:20:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"45"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 45]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.5ms) + Rendered tasks/edit.html.erb within layouts/application (3.9ms) +Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 15:20:18 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/45/edit" for ::1 at 2016-04-25 15:20:19 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"45"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 45]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (3.2ms) + Rendered tasks/edit.html.erb within layouts/application (4.8ms) +Completed 200 OK in 25ms (Views: 23.8ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-25 15:20:21 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-25 15:20:37 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 23ms (Views: 21.5ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:20:37 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:20:37 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:20:37 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:20:37 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:20:37 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:20:37 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:20:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:20:37 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:20:38 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.6ms) + Rendered tasks/edit.html.erb within layouts/application (4.0ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:20:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (15.2ms) + Rendered tasks/edit.html.erb within layouts/application (16.3ms) +Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `person_id' for #: + app/views/tasks/_input.html.erb:12:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270176421520' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270176421520' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/258e388aa434aa14/variables" for ::1 at 2016-04-25 15:20:56 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:21:10 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (29.0ms) + Rendered tasks/edit.html.erb within layouts/application (30.0ms) +Completed 500 Internal Server Error in 34ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `person_id' for #<#:0x007fd21a3d7a68>: + app/views/tasks/_input.html.erb:12:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270175589980' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270175589980' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/adf0162e9d368dcf/variables" for ::1 at 2016-04-25 15:21:10 -0700 + + +Started POST "/__better_errors/adf0162e9d368dcf/eval" for ::1 at 2016-04-25 15:21:15 -0700 + + +Started POST "/__better_errors/adf0162e9d368dcf/eval" for ::1 at 2016-04-25 15:21:22 -0700 + + +Started POST "/__better_errors/adf0162e9d368dcf/eval" for ::1 at 2016-04-25 15:21:24 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:21:38 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (4.7ms) + Rendered tasks/edit.html.erb within layouts/application (5.9ms) +Completed 200 OK in 22ms (Views: 20.8ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:21:38 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:21:38 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:21:38 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:21:38 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:21:38 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:21:38 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:21:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:21:38 -0700 + + +Started GET "/" for ::1 at 2016-04-25 15:21:39 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:21:41 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (3.9ms) + Rendered tasks/edit.html.erb within layouts/application (5.3ms) +Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-25 15:23:11 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 19ms (Views: 17.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:23:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (24.6ms) + Rendered tasks/edit.html.erb within layouts/application (26.0ms) +Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.3ms) + +NameError - undefined local variable or method `id' for #<#:0x007fd21a02bf90>: + app/views/tasks/_input.html.erb:12:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270178073320' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270178073320' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176611180' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:23:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (27.6ms) + Rendered tasks/edit.html.erb within layouts/application (29.7ms) +Completed 500 Internal Server Error in 35ms (ActiveRecord: 0.3ms) + +NameError - undefined local variable or method `id' for #<#:0x007fd214c522c0>: + app/views/tasks/_input.html.erb:12:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270174481180' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270174481180' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/17c794bf9a27f337/variables" for ::1 at 2016-04-25 15:23:13 -0700 + + +Started POST "/__better_errors/17c794bf9a27f337/eval" for ::1 at 2016-04-25 15:23:24 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:25:05 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (48.9ms) + Rendered tasks/edit.html.erb within layouts/application (50.4ms) +Completed 500 Internal Server Error in 55ms (ActiveRecord: 0.4ms) + +NameError - undefined local variable or method `task' for #<#:0x007fd219c879c0>: + app/views/tasks/_input.html.erb:13:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270176194560' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270176194560' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/291bbedbec35f44c/variables" for ::1 at 2016-04-25 15:25:06 -0700 + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:25:19 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/_input.html.erb (3.2ms) + Rendered tasks/edit.html.erb within layouts/application (4.2ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:25:19 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:25:19 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:25:19 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:25:19 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:25:19 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:25:19 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:25:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:25:19 -0700 + + +Started GET "/" for ::1 at 2016-04-25 15:25:21 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:25:23 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/_input.html.erb (4.1ms) + Rendered tasks/edit.html.erb within layouts/application (5.7ms) +Completed 200 OK in 27ms (Views: 25.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/45/edit" for ::1 at 2016-04-25 15:25:26 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"45"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 45]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/_input.html.erb (2.9ms) + Rendered tasks/edit.html.erb within layouts/application (4.9ms) +Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/45/edit" for ::1 at 2016-04-25 15:25:51 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"45"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 45]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (31.9ms) + Rendered tasks/edit.html.erb within layouts/application (33.0ms) +Completed 500 Internal Server Error in 37ms (ActiveRecord: 0.3ms) + +NameError - undefined local variable or method `task' for #<#:0x007fd2161e5bc8>: + app/views/tasks/_input.html.erb:13:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270156977820' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270156977820' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/289b67a44f9e056f/variables" for ::1 at 2016-04-25 15:25:51 -0700 + + +Started GET "/tasks/45/edit" for ::1 at 2016-04-25 15:25:52 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"45"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 45]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (34.0ms) + Rendered tasks/edit.html.erb within layouts/application (35.6ms) +Completed 500 Internal Server Error in 41ms (ActiveRecord: 0.3ms) + +NameError - undefined local variable or method `task' for #<#:0x007fd2162eb0b8>: + app/views/tasks/_input.html.erb:13:in `block in _app_views_tasks__input_html_erb__2612440471482805124_70270156977820' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/_input.html.erb:1:in `_app_views_tasks__input_html_erb__2612440471482805124_70270156977820' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.6) lib/action_view/helpers/rendering_helper.rb:35:in `render' + app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__1206843481048724957_70270176733700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b4437d8e43449de7/variables" for ::1 at 2016-04-25 15:25:52 -0700 + + +Started GET "/tasks/45/edit" for ::1 at 2016-04-25 15:26:00 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"45"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 45]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (3.2ms) + Rendered tasks/edit.html.erb within layouts/application (4.2ms) +Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:26:00 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:26:00 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:26:00 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:26:00 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:26:00 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:26:00 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:26:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:26:00 -0700 + + +Started GET "/tasks/45/edit" for ::1 at 2016-04-25 15:26:05 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"45"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 45]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.7ms) + Rendered tasks/edit.html.erb within layouts/application (3.7ms) +Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:26:05 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:26:05 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:26:05 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:26:05 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:26:05 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:26:05 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:26:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:26:05 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:34:59 -0700 + +SyntaxError - syntax error, unexpected tIDENTIFIER, expecting keyword_end + get '/people' => 'people#index' as: 'people' + ^: + config/routes.rb:20:in `' + activesupport (4.2.6) lib/active_support/dependencies.rb:268:in `block in load' + activesupport (4.2.6) lib/active_support/dependencies.rb:240:in `load_dependency' + activesupport (4.2.6) lib/active_support/dependencies.rb:268:in `load' + railties (4.2.6) lib/rails/application/routes_reloader.rb:40:in `block in load_paths' + railties (4.2.6) lib/rails/application/routes_reloader.rb:40:in `load_paths' + railties (4.2.6) lib/rails/application/routes_reloader.rb:16:in `reload!' + railties (4.2.6) lib/rails/application/routes_reloader.rb:26:in `block in updater' + activesupport (4.2.6) lib/active_support/file_update_checker.rb:75:in `execute' + railties (4.2.6) lib/rails/application/routes_reloader.rb:7:in `execute' + railties (4.2.6) lib/rails/application/finisher.rb:81:in `block (2 levels) in ' + activesupport (4.2.6) lib/active_support/callbacks.rb:446:in `block in make_lambda' + activesupport (4.2.6) lib/active_support/callbacks.rb:192:in `block in simple' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_prepare_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:83:in `prepare!' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:71:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/2c3333c56f097593/variables" for ::1 at 2016-04-25 15:34:59 -0700 + + +Started GET "/people/" for ::1 at 2016-04-25 15:35:02 -0700 + +ActionController::RoutingError (No route matches [GET] "/people"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (52.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (47.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (103.3ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:35:05 -0700 + +ActionController::RoutingError (No route matches [GET] "/people"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (49.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.5ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:35:58 -0700 + +SyntaxError - syntax error, unexpected tLABEL, expecting keyword_do or '{' or '(' +- index action: Show a list of all people in the database. + ^ +/Users/annamason/C5/projects/TaskListRails/task-list/app/controllers/people_controller.rb:14: syntax error, unexpected keyword_in, expecting end-of-input +- index action: Show a list of all people in the database. + ^: + app/controllers/people_controller.rb:14:in `' + activesupport (4.2.6) lib/active_support/dependencies.rb:457:in `block in load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:647:in `new_constants_in' + activesupport (4.2.6) lib/active_support/dependencies.rb:456:in `load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:354:in `require_or_load' + activesupport (4.2.6) lib/active_support/dependencies.rb:494:in `load_missing_constant' + activesupport (4.2.6) lib/active_support/dependencies.rb:184:in `const_missing' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + activesupport (4.2.6) lib/active_support/dependencies.rb:566:in `get' + activesupport (4.2.6) lib/active_support/dependencies.rb:597:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/3ef058fbe8ded5a2/variables" for ::1 at 2016-04-25 15:35:58 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:35:59 -0700 + +SyntaxError - syntax error, unexpected tLABEL, expecting keyword_do or '{' or '(' +- index action: Show a list of all people in the database. + ^ +/Users/annamason/C5/projects/TaskListRails/task-list/app/controllers/people_controller.rb:14: syntax error, unexpected keyword_in, expecting end-of-input +- index action: Show a list of all people in the database. + ^: + app/controllers/people_controller.rb:14:in `' + activesupport (4.2.6) lib/active_support/dependencies.rb:457:in `block in load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:647:in `new_constants_in' + activesupport (4.2.6) lib/active_support/dependencies.rb:456:in `load_file' + activesupport (4.2.6) lib/active_support/dependencies.rb:354:in `require_or_load' + activesupport (4.2.6) lib/active_support/dependencies.rb:494:in `load_missing_constant' + activesupport (4.2.6) lib/active_support/dependencies.rb:184:in `const_missing' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `constantize' + activesupport (4.2.6) lib/active_support/dependencies.rb:566:in `get' + activesupport (4.2.6) lib/active_support/dependencies.rb:597:in `constantize' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/66c3126bf1e1f022/variables" for ::1 at 2016-04-25 15:35:59 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:36:18 -0700 +Processing by PeopleController#index as HTML + Rendered people/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:36:18 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:36:18 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:36:18 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:36:18 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:36:18 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:36:18 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:36:18 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:36:18 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:38:05 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (30.4ms) +Completed 500 Internal Server Error in 34ms (ActiveRecord: 1.0ms) + +NameError - undefined local variable or method `task' for #<#:0x007fd21a1880a0>: + app/views/people/index.html.erb:13:in `block in _app_views_people_index_html_erb___2601652155399883508_70270178825740' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:10:in `_app_views_people_index_html_erb___2601652155399883508_70270178825740' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c8a0e59e67e0aabe/variables" for ::1 at 2016-04-25 15:38:05 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:39:04 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (26.4ms) +Completed 500 Internal Server Error in 34ms (ActiveRecord: 0.4ms) + +NameError - undefined local variable or method `task' for #<#:0x007fd219b27e40>: + app/views/people/index.html.erb:13:in `block in _app_views_people_index_html_erb___2601652155399883508_70270178825740' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:10:in `_app_views_people_index_html_erb___2601652155399883508_70270178825740' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/6601218b7d151045/variables" for ::1 at 2016-04-25 15:39:04 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:39:05 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (27.1ms) +Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `task' for #<#:0x007fd21a454ec8>: + app/views/people/index.html.erb:13:in `block in _app_views_people_index_html_erb___2601652155399883508_70270178825740' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:10:in `_app_views_people_index_html_erb___2601652155399883508_70270178825740' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/2d103f7fe705c245/variables" for ::1 at 2016-04-25 15:39:05 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:39:20 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:39:20 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:39:20 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:39:20 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:39:20 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:39:20 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:39:20 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:39:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:39:20 -0700 + + +Started GET "/people/1" for ::1 at 2016-04-25 15:39:24 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered people/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/people/2" for ::1 at 2016-04-25 15:39:26 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered people/show.html.erb within layouts/application (0.0ms) +Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.1ms) + + +Started GET "/people/1" for ::1 at 2016-04-25 15:39:56 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered people/show.html.erb within layouts/application (0.0ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/people/1" for ::1 at 2016-04-25 15:42:11 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered people/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:42:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:42:11 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:42:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:42:11 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:42:11 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:42:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:42:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:42:11 -0700 + + +Started GET "/" for ::1 at 2016-04-25 15:42:12 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/index.html.erb within layouts/application (6.9ms) +Completed 200 OK in 23ms (Views: 20.4ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks/43/edit" for ::1 at 2016-04-25 15:42:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.9ms) + Rendered tasks/edit.html.erb within layouts/application (4.2ms) +Completed 200 OK in 19ms (Views: 17.2ms | ActiveRecord: 0.3ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:42:20 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/people/2" for ::1 at 2016-04-25 15:42:21 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered people/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/people/3" for ::1 at 2016-04-25 15:42:23 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"3"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered people/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.1ms) + + +Started GET "/people/1" for ::1 at 2016-04-25 15:42:26 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered people/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.1ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:43:04 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 48ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `people_index_path' for #<#:0x007fd21a214e88> +Did you mean? people_path: + app/views/layouts/application.html.erb:17:in `_app_views_layouts_application_html_erb__3800168658058585815_70270179478360' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/750450662fcc7a7a/variables" for ::1 at 2016-04-25 15:43:04 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:43:05 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 48ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `people_index_path' for #<#:0x007fd21c2974a8> +Did you mean? people_path: + app/views/layouts/application.html.erb:17:in `_app_views_layouts_application_html_erb__3800168658058585815_70270179478360' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/8316c6f9be3cca68/variables" for ::1 at 2016-04-25 15:43:05 -0700 + + +Started POST "/__better_errors/8316c6f9be3cca68/eval" for ::1 at 2016-04-25 15:43:09 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:43:15 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:43:15 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:43:15 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:43:15 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:43:15 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:43:15 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:43:15 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:43:15 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:43:15 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:43:16 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.1ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:43:17 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 15:43:17 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.4ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:43:19 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.2ms) + + +Started GET "/people/1" for ::1 at 2016-04-25 15:43:21 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered people/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:43:22 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 28ms (Views: 26.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-25 15:43:23 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.3ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:47:41 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 22ms (Views: 21.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-25 15:47:49 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 15:47:50 -0700 +Processing by TasksController#add as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.8ms) + Rendered tasks/add.html.erb within layouts/application (4.2ms) +Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.1ms) + + +Started POST "/tasks" for ::1 at 2016-04-25 15:47:54 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"3rK2YwVPtfg0350o4WhmAVOOJgGGuNNZjJpsLtjf5xXw8B/cNJKntULW1Itia6jD3cnoWl/FFdVFknHxPuF7Bg==", "task"=>{"title"=>"anna task", "description"=>"anna", "person_id"=>"1"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.6ms) INSERT INTO "tasks" ("title", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "anna task"], ["description", "anna"], ["person_id", 1], ["created_at", "2016-04-25 22:47:54.389660"], ["updated_at", "2016-04-25 22:47:54.389660"]] +  (1.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.6ms) + + +Started GET "/" for ::1 at 2016-04-25 15:47:54 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 23ms (Views: 21.8ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-25 15:47:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 21ms (Views: 20.7ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 15:47:56 -0700 +Processing by TasksController#add as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.8ms) + Rendered tasks/add.html.erb within layouts/application (4.3ms) +Completed 200 OK in 26ms (Views: 24.6ms | ActiveRecord: 0.1ms) + + +Started POST "/tasks" for ::1 at 2016-04-25 15:47:58 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"9XGND463tVFt5wlhPR8bIKMXszbQQdNfh3XNdY+AwK7bMySwv2qnHBvuQMK+HNXiLVB9bQk8FdNOfdCqab5cvQ==", "task"=>{"title"=>"anna", "description"=>"anna", "person_id"=>"1"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "anna"], ["description", "anna"], ["person_id", 1], ["created_at", "2016-04-25 22:47:58.703303"], ["updated_at", "2016-04-25 22:47:58.703303"]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.1ms) + + +Started GET "/" for ::1 at 2016-04-25 15:47:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (5.4ms) +Completed 200 OK in 20ms (Views: 18.7ms | ActiveRecord: 0.6ms) + + +Started GET "/" for ::1 at 2016-04-25 15:48:14 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:48:14 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:48:14 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:48:14 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:48:14 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:48:14 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:48:14 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:48:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:48:14 -0700 + + +Started GET "/" for ::1 at 2016-04-25 15:48:15 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:48:15 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:48:15 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:48:15 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:48:15 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:48:15 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:48:15 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:48:15 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:48:15 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:48:16 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:48:39 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (6.2ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `whatever' for 1:Fixnum: + app/views/people/index.html.erb:16:in `block in _app_views_people_index_html_erb___2601652155399883508_70270134751880' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:10:in `_app_views_people_index_html_erb___2601652155399883508_70270134751880' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1de6306504e3fbb4/variables" for ::1 at 2016-04-25 15:48:39 -0700 + + +Started POST "/__better_errors/1de6306504e3fbb4/eval" for ::1 at 2016-04-25 15:48:47 -0700 + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? [["person_id", 1]] + + +Started POST "/__better_errors/1de6306504e3fbb4/eval" for ::1 at 2016-04-25 15:49:21 -0700 + + +Started POST "/__better_errors/1de6306504e3fbb4/eval" for ::1 at 2016-04-25 15:50:40 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:51:49 -0700 +Processing by PeopleController#index as HTML + Person Load (0.3ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 25ms (Views: 23.5ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:51:49 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:51:49 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:51:49 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:51:49 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:51:49 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:51:49 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:51:49 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:51:49 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:51:55 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:51:55 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:51:55 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:51:55 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:51:55 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:51:55 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:51:55 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:51:55 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:51:55 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:52:57 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (33.7ms) +Completed 500 Internal Server Error in 38ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `task' for #<#:0x007fd21b85df28>: + app/views/people/index.html.erb:16:in `block in _app_views_people_index_html_erb___2601652155399883508_70270190806440' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:10:in `_app_views_people_index_html_erb___2601652155399883508_70270190806440' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/bb9ea22d79ae93fb/variables" for ::1 at 2016-04-25 15:52:57 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:53:04 -0700 +Processing by PeopleController#index as HTML + Person Load (0.3ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (44.4ms) +Completed 500 Internal Server Error in 49ms (ActiveRecord: 0.3ms) + +NameError - undefined local variable or method `tasks' for #<#:0x007fd21a089a50> +Did you mean? tasks_url: + app/views/people/index.html.erb:16:in `block in _app_views_people_index_html_erb___2601652155399883508_70270178350620' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:10:in `_app_views_people_index_html_erb___2601652155399883508_70270178350620' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/3988aaffc9b50cb6/variables" for ::1 at 2016-04-25 15:53:04 -0700 + + +Started POST "/__better_errors/3988aaffc9b50cb6/eval" for ::1 at 2016-04-25 15:53:08 -0700 + + +Started POST "/__better_errors/3988aaffc9b50cb6/eval" for ::1 at 2016-04-25 15:53:10 -0700 + + +Started POST "/__better_errors/3988aaffc9b50cb6/eval" for ::1 at 2016-04-25 15:53:12 -0700 + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? [["person_id", 1]] + + +Started POST "/__better_errors/3988aaffc9b50cb6/eval" for ::1 at 2016-04-25 15:53:32 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:54:09 -0700 +Processing by PeopleController#index as HTML + Person Load (0.4ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (30.9ms) +Completed 500 Internal Server Error in 36ms (ActiveRecord: 0.7ms) + +NameError - undefined local variable or method `tasks' for #<#:0x007fd21bd8b978> +Did you mean? tasks_url: + app/views/people/index.html.erb:16:in `block in _app_views_people_index_html_erb___2601652155399883508_70270178350620' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:10:in `_app_views_people_index_html_erb___2601652155399883508_70270178350620' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/441f553949c2cc84/variables" for ::1 at 2016-04-25 15:54:09 -0700 + + +Started POST "/__better_errors/441f553949c2cc84/eval" for ::1 at 2016-04-25 15:54:12 -0700 + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at == nil) [["person_id", 1]] + + +Started GET "/people" for ::1 at 2016-04-25 15:55:02 -0700 +Processing by PeopleController#index as HTML + Person Load (0.3ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:55:02 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:55:02 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:55:02 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:55:03 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:55:03 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:55:03 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:55:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:55:03 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:55:35 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:55:35 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:55:35 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:55:35 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:55:35 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:55:35 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:55:35 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:55:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:55:35 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:55:45 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:55:45 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:55:45 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:55:45 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:55:45 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:55:45 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:55:45 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:55:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:55:45 -0700 + + +Started GET "/" for ::1 at 2016-04-25 15:55:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.4ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 19ms (Views: 17.2ms | ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-04-25 15:55:54 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:55:54 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:55:54 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:55:54 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:55:54 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:55:54 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:55:54 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:55:54 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:55:54 -0700 + + +Started GET "/" for ::1 at 2016-04-25 15:55:54 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasks/39" for ::1 at 2016-04-25 15:56:00 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"H8TfpNEiMMwPmov90/yr1E9yQ3la6GQ6KDi2MgYVOTQxhnYb4P8igXmTwl5Q/2UWwTWNIoOVorbhMKvt4CulJw==", "id"=>"39"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 39]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 39]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.9ms) + + +Started GET "/" for ::1 at 2016-04-25 15:56:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.4ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:56:02 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.4ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:56:15 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:56:15 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:56:15 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:56:15 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:56:15 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:56:15 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:56:15 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:56:15 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:56:15 -0700 + + +Started GET "/people/1" for ::1 at 2016-04-25 15:56:42 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered people/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/people/1" for ::1 at 2016-04-25 15:57:11 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"1"} + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered people/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 14ms (Views: 12.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:57:11 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:57:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:57:11 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:57:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:57:11 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:57:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:57:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:57:11 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:57:13 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.4ms) + + +Started GET "/people/2" for ::1 at 2016-04-25 15:57:15 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered people/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.1ms) + + +Started GET "/people/2" for ::1 at 2016-04-25 15:58:37 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 2]] + Rendered people/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 15:58:37 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 15:58:37 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:58:37 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:58:37 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:58:37 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:58:37 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:58:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:58:37 -0700 + + +Started GET "/" for ::1 at 2016-04-25 15:58:40 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 28ms (Views: 27.1ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasks/43" for ::1 at 2016-04-25 15:58:43 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"authenticity_token"=>"k+u/Nz1AUj8n5fg//WNUfCdjTwYj/s1ARM1VWSo3SCy9qRaIDJ1AclHssZx+YJq+qSSBXfqDC8yNxUiGzAnUPw==", "id"=>"43"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 43]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-25 15:58:43 -0700"], ["updated_at", "2016-04-25 22:58:43.138187"], ["id", 43]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 1.9ms) + + +Started GET "/" for ::1 at 2016-04-25 15:58:43 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.3ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:58:44 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.3ms) + + +Started GET "/people/2" for ::1 at 2016-04-25 15:58:45 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 2]] + Rendered people/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 15:58:47 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.6ms) +Completed 200 OK in 19ms (Views: 17.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 15:58:48 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.0ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-25 15:58:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 15:58:52 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.2ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-25 15:58:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 15:58:53 -0700 +Processing by TasksController#add as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.2ms) + Rendered tasks/add.html.erb within layouts/application (3.5ms) +Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 15:58:54 -0700 +Processing by TasksController#completed as HTML + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.3ms) +Completed 200 OK in 32ms (Views: 30.6ms | ActiveRecord: 0.5ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:58:54 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.4ms) + + +Started GET "/people" for ::1 at 2016-04-25 16:00:29 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 20ms (Views: 19.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 16:00:29 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:00:29 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 16:00:29 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:00:29 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:00:29 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:00:29 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:00:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:00:30 -0700 + + +Started GET "/" for ::1 at 2016-04-25 16:01:38 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-25 16:05:25 -0700 + +SyntaxError - syntax error, unexpected tIDENTIFIER, expecting keyword_end + get '/people/:id/tasks' => 'people#tasks' as: 'all_tasks' + ^ +/Users/annamason/C5/projects/TaskListRails/task-list/config/routes.rb:22: syntax error, unexpected end-of-input, expecting keyword_end: + config/routes.rb:22:in `' + activesupport (4.2.6) lib/active_support/dependencies.rb:268:in `block in load' + activesupport (4.2.6) lib/active_support/dependencies.rb:240:in `load_dependency' + activesupport (4.2.6) lib/active_support/dependencies.rb:268:in `load' + railties (4.2.6) lib/rails/application/routes_reloader.rb:40:in `block in load_paths' + railties (4.2.6) lib/rails/application/routes_reloader.rb:40:in `load_paths' + railties (4.2.6) lib/rails/application/routes_reloader.rb:16:in `reload!' + railties (4.2.6) lib/rails/application/routes_reloader.rb:26:in `block in updater' + activesupport (4.2.6) lib/active_support/file_update_checker.rb:75:in `execute' + railties (4.2.6) lib/rails/application/routes_reloader.rb:7:in `execute' + railties (4.2.6) lib/rails/application/finisher.rb:81:in `block (2 levels) in ' + activesupport (4.2.6) lib/active_support/callbacks.rb:446:in `block in make_lambda' + activesupport (4.2.6) lib/active_support/callbacks.rb:192:in `block in simple' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_prepare_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:83:in `prepare!' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:71:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/852ed7ce27ca1fd5/variables" for ::1 at 2016-04-25 16:05:25 -0700 + + +Started GET "/" for ::1 at 2016-04-25 16:05:26 -0700 + +ActionController::RoutingError (No route matches [GET] "/"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (45.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (94.4ms) + + +Started GET "/" for ::1 at 2016-04-25 16:05:29 -0700 + +ActionController::RoutingError (No route matches [GET] "/"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (42.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.0ms) + + +Started GET "/" for ::1 at 2016-04-25 16:05:38 -0700 + +ActionController::RoutingError (No route matches [GET] "/"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (44.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.6ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.4ms) + + +Started GET "/" for ::1 at 2016-04-25 16:05:39 -0700 + +ActionController::RoutingError (No route matches [GET] "/"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (42.7ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.7ms) + + +Started GET "/" for ::1 at 2016-04-25 16:05:48 -0700 + +ActionController::RoutingError (No route matches [GET] "/"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (46.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.5ms) + + +Started GET "/people" for ::1 at 2016-04-25 16:05:54 -0700 + +ActionController::RoutingError (No route matches [GET] "/people"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (44.9ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.8ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/annamason/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.1ms) + + +Started GET "/people" for ::1 at 2016-04-25 16:06:16 -0700 + +SyntaxError - syntax error, unexpected tIDENTIFIER, expecting keyword_end + get '/people/:id/tasks' => 'people#tasks' as: 'all_tasks' + ^ +/Users/annamason/C5/projects/TaskListRails/task-list/config/routes.rb:22: syntax error, unexpected end-of-input, expecting keyword_end: + config/routes.rb:22:in `' + activesupport (4.2.6) lib/active_support/dependencies.rb:268:in `block in load' + activesupport (4.2.6) lib/active_support/dependencies.rb:240:in `load_dependency' + activesupport (4.2.6) lib/active_support/dependencies.rb:268:in `load' + railties (4.2.6) lib/rails/application/routes_reloader.rb:40:in `block in load_paths' + railties (4.2.6) lib/rails/application/routes_reloader.rb:40:in `load_paths' + railties (4.2.6) lib/rails/application/routes_reloader.rb:16:in `reload!' + railties (4.2.6) lib/rails/application/routes_reloader.rb:26:in `block in updater' + activesupport (4.2.6) lib/active_support/file_update_checker.rb:75:in `execute' + railties (4.2.6) lib/rails/application/routes_reloader.rb:7:in `execute' + railties (4.2.6) lib/rails/application/finisher.rb:81:in `block (2 levels) in ' + activesupport (4.2.6) lib/active_support/callbacks.rb:446:in `block in make_lambda' + activesupport (4.2.6) lib/active_support/callbacks.rb:192:in `block in simple' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_prepare_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:83:in `prepare!' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:71:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/d63fd7313c1def16/variables" for ::1 at 2016-04-25 16:06:16 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 16:06:24 -0700 + +SyntaxError - syntax error, unexpected end-of-input, expecting keyword_end: + config/routes.rb:22:in `' + activesupport (4.2.6) lib/active_support/dependencies.rb:268:in `block in load' + activesupport (4.2.6) lib/active_support/dependencies.rb:240:in `load_dependency' + activesupport (4.2.6) lib/active_support/dependencies.rb:268:in `load' + railties (4.2.6) lib/rails/application/routes_reloader.rb:40:in `block in load_paths' + railties (4.2.6) lib/rails/application/routes_reloader.rb:40:in `load_paths' + railties (4.2.6) lib/rails/application/routes_reloader.rb:16:in `reload!' + railties (4.2.6) lib/rails/application/routes_reloader.rb:26:in `block in updater' + activesupport (4.2.6) lib/active_support/file_update_checker.rb:75:in `execute' + railties (4.2.6) lib/rails/application/routes_reloader.rb:7:in `execute' + railties (4.2.6) lib/rails/application/finisher.rb:81:in `block (2 levels) in ' + activesupport (4.2.6) lib/active_support/callbacks.rb:446:in `block in make_lambda' + activesupport (4.2.6) lib/active_support/callbacks.rb:192:in `block in simple' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_prepare_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:83:in `prepare!' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:71:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ad9e76be17c30d8a/variables" for ::1 at 2016-04-25 16:06:24 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 16:06:31 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (13.2ms) +Completed 200 OK in 33ms (Views: 30.0ms | ActiveRecord: 0.9ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 16:06:31 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 16:06:31 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:06:31 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:06:31 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:06:31 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:06:31 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:06:31 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:06:31 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 16:06:33 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.6ms) + + +Started GET "/people/1" for ::1 at 2016-04-25 16:06:34 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 1]] + Rendered people/show.html.erb within layouts/application (2.6ms) +Completed 200 OK in 19ms (Views: 16.9ms | ActiveRecord: 0.4ms) + + +Started GET "/people/1/tasks" for ::1 at 2016-04-25 16:06:36 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"1"} + Rendered people/tasks.html.erb within layouts/application (0.4ms) +Completed 200 OK in 17ms (Views: 16.9ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-25 16:08:21 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 29ms (Views: 27.9ms | ActiveRecord: 0.4ms) + + +Started GET "/people" for ::1 at 2016-04-25 16:08:23 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.4ms) + + +Started GET "/people/1" for ::1 at 2016-04-25 16:08:24 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 1]] + Rendered people/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.2ms) + + +Started GET "/people/1/tasks" for ::1 at 2016-04-25 16:08:33 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"1"} + Rendered people/tasks.html.erb within layouts/application (0.0ms) +Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.0ms) + + +Started GET "/people/1/tasks" for ::1 at 2016-04-25 16:09:36 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered people/tasks.html.erb within layouts/application (0.4ms) +Completed 200 OK in 23ms (Views: 17.1ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 16:09:36 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 16:09:36 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:09:36 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:09:36 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:09:36 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:09:36 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:09:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:09:36 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 16:09:37 -0700 +Processing by PeopleController#index as HTML + Person Load (0.3ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (11.5ms) +Completed 200 OK in 26ms (Views: 24.3ms | ActiveRecord: 0.7ms) + + +Started GET "/people/1" for ::1 at 2016-04-25 16:09:39 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 1]] + Rendered people/show.html.erb within layouts/application (2.7ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.4ms) + + +Started GET "/people/1" for ::1 at 2016-04-25 16:10:02 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered people/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 16:10:02 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:10:02 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:10:02 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 16:10:02 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:10:02 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:10:02 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:10:02 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:10:02 -0700 + + +Started GET "/people/1" for ::1 at 2016-04-25 16:13:22 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered people/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 16:13:22 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 16:13:22 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:13:22 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:13:22 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:13:22 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:13:22 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:13:22 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:13:22 -0700 + + +Started GET "/people/1/tasks" for ::1 at 2016-04-25 16:13:28 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 1]] + Rendered people/tasks.html.erb within layouts/application (4.6ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/people/tasks.html.erb:36:in `_app_views_people_tasks_html_erb___76365429356721319_70270145314540' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/people/1/tasks" for ::1 at 2016-04-25 16:13:28 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 1]] + Rendered people/tasks.html.erb within layouts/application (6.0ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/people/tasks.html.erb:36:in `_app_views_people_tasks_html_erb___76365429356721319_70270153605700' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4403fc123be17a4b/variables" for ::1 at 2016-04-25 16:13:29 -0700 + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + + +Started GET "/people/1/tasks" for ::1 at 2016-04-25 16:13:47 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered people/tasks.html.erb within layouts/application (3.1ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/people/tasks.html.erb:27:in `_app_views_people_tasks_html_erb___76365429356721319_70270192743820' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/71a2b1561946766c/variables" for ::1 at 2016-04-25 16:13:47 -0700 + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 1]] + + +Started GET "/people/1/tasks" for ::1 at 2016-04-25 16:14:16 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"1"} + Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered people/tasks.html.erb within layouts/application (4.1ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.3ms) + +NoMethodError - undefined method `length' for nil:NilClass: + app/views/people/tasks.html.erb:19:in `_app_views_people_tasks_html_erb___76365429356721319_70270192212720' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/5ad60d18f6a16857/variables" for ::1 at 2016-04-25 16:14:16 -0700 + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + + +Started GET "/people/1/tasks" for ::1 at 2016-04-25 16:14:18 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered people/tasks.html.erb within layouts/application (3.1ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `length' for nil:NilClass: + app/views/people/tasks.html.erb:19:in `_app_views_people_tasks_html_erb___76365429356721319_70270192212720' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/cd63a1cee245fa0a/variables" for ::1 at 2016-04-25 16:14:18 -0700 + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + + +Started GET "/people/1/tasks" for ::1 at 2016-04-25 16:14:24 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Rendered people/tasks.html.erb within layouts/application (4.8ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/people/tasks.html.erb:27:in `_app_views_people_tasks_html_erb___76365429356721319_70270135226840' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/687a572619204d86/variables" for ::1 at 2016-04-25 16:14:24 -0700 + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 1]] + + +Started GET "/people/1/tasks" for ::1 at 2016-04-25 16:14:34 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Rendered people/tasks.html.erb within layouts/application (1.5ms) +Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 16:14:34 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 16:14:34 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:14:34 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:14:34 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:14:34 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:14:34 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:14:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:14:34 -0700 + + +Started GET "/people/1/tasks" for ::1 at 2016-04-25 16:16:11 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered people/tasks.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms) + +SyntaxError - syntax error, unexpected keyword_ensure, expecting keyword_end +/Users/annamason/C5/projects/TaskListRails/task-list/app/views/people/tasks.html.erb:30: syntax error, unexpected end-of-input, expecting keyword_end: + app/views/people/tasks.html.erb:28:in `' + actionview (4.2.6) lib/action_view/template.rb:296:in `compile' + actionview (4.2.6) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.6) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.6) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4b59f958a4e4d328/variables" for ::1 at 2016-04-25 16:16:11 -0700 + + +Started GET "/people/1/tasks" for ::1 at 2016-04-25 16:16:26 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Rendered people/tasks.html.erb within layouts/application (1.7ms) +Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 16:16:26 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 16:16:26 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:16:26 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:16:26 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:16:26 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:16:26 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:16:26 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:16:26 -0700 + + +Started GET "/people/1/tasks" for ::1 at 2016-04-25 16:16:51 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Rendered people/tasks.html.erb within layouts/application (1.7ms) +Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 16:16:51 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 16:16:51 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:16:51 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:16:51 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:16:51 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:16:51 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:16:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:16:51 -0700 + + +Started GET "/people/1/tasks" for ::1 at 2016-04-25 16:17:26 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 1]] + Rendered people/tasks.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 16:17:26 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 16:17:26 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:17:26 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:17:26 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:17:26 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:17:26 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:17:26 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:17:26 -0700 + + +Started GET "/" for ::1 at 2016-04-25 16:17:28 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 23ms (Views: 21.8ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/46" for ::1 at 2016-04-25 16:17:30 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"authenticity_token"=>"b7TnGs/FRcl1nljS8uHPuSqU2+8lMJsxxdV608VQ51pB9k6l/hhXhAOXEXFx4gF7pNMVtPxNXb0M3WcMI257SQ==", "id"=>"46"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 46]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-25 16:17:30 -0700"], ["updated_at", "2016-04-25 23:17:30.652349"], ["id", 46]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/" for ::1 at 2016-04-25 16:17:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/47" for ::1 at 2016-04-25 16:17:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"47"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 47]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.3ms) + + +Started GET "/people" for ::1 at 2016-04-25 16:17:35 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 23ms (Views: 21.5ms | ActiveRecord: 0.5ms) + + +Started GET "/people/1" for ::1 at 2016-04-25 16:17:36 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered people/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/people/1/tasks" for ::1 at 2016-04-25 16:17:37 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 1]] + Rendered people/tasks.html.erb within layouts/application (2.0ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-25 16:18:23 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-25 16:24:38 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (26.2ms) +Completed 200 OK in 298ms (Views: 284.6ms | ActiveRecord: 0.9ms) + + +Started GET "/assets/tasks.self-0e477bb186c6c6661291fc6f580fc894f6441fef44b097cc5287318bef92d67b.css?body=1" for ::1 at 2016-04-25 16:24:38 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-25 16:24:38 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:24:38 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:24:38 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:24:38 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:24:38 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:24:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:24:38 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-25 16:24:39 -0700 +Processing by TasksController#add as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (16.5ms) + Rendered tasks/add.html.erb within layouts/application (21.5ms) +Completed 200 OK in 44ms (Views: 43.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 16:24:40 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.8ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.2ms) + + +Started GET "/people" for ::1 at 2016-04-25 16:24:41 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (19.3ms) +Completed 200 OK in 44ms (Views: 42.6ms | ActiveRecord: 0.4ms) + + +Started GET "/people/1" for ::1 at 2016-04-25 16:24:42 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered people/show.html.erb within layouts/application (3.0ms) +Completed 200 OK in 22ms (Views: 20.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-25 16:24:43 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-25 16:25:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/45" for ::1 at 2016-04-25 16:25:05 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"45"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 45]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 18ms (Views: 15.7ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-25 16:25:06 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 16:25:07 -0700 +Processing by TasksController#add as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.8ms) + Rendered tasks/add.html.erb within layouts/application (5.4ms) +Completed 200 OK in 29ms (Views: 28.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 16:25:48 -0700 +Processing by TasksController#add as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (4.2ms) + Rendered tasks/add.html.erb within layouts/application (5.8ms) +Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 16:25:49 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.7ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.1ms) + + +Started GET "/people" for ::1 at 2016-04-25 16:25:51 -0700 +Processing by PeopleController#index as HTML + Person Load (0.3ms) SELECT "people".* FROM "people" + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 20ms (Views: 18.7ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 16:25:52 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.5ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 16:25:53 -0700 +Processing by TasksController#add as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.7ms) + Rendered tasks/add.html.erb within layouts/application (4.2ms) +Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 16:25:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 33ms (Views: 31.6ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-25 16:25:54 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (6.0ms) +Completed 200 OK in 25ms (Views: 23.3ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 16:25:54 -0700 +Processing by TasksController#add as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (4.7ms) + Rendered tasks/add.html.erb within layouts/application (7.0ms) +Completed 200 OK in 22ms (Views: 21.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 16:25:54 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.1ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/people" for ::1 at 2016-04-25 16:25:55 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (6.0ms) +Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 16:25:55 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.1ms) +Completed 200 OK in 23ms (Views: 22.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 16:25:56 -0700 +Processing by TasksController#add as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.2ms) + Rendered tasks/add.html.erb within layouts/application (3.5ms) +Completed 200 OK in 23ms (Views: 21.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 16:25:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 22ms (Views: 21.3ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-25 16:31:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 16:31:06 -0700 +Processing by TasksController#add as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.8ms) + Rendered tasks/add.html.erb within layouts/application (4.0ms) +Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 16:31:06 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.5ms) +Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.2ms) + + +Started GET "/people" for ::1 at 2016-04-25 16:31:07 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 16:31:08 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (6.1ms) +Completed 200 OK in 30ms (Views: 29.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 16:31:08 -0700 +Processing by TasksController#add as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.4ms) + Rendered tasks/add.html.erb within layouts/application (3.7ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started GET "/people" for ::1 at 2016-04-25 16:31:09 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 16:31:09 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.4ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 16:31:10 -0700 +Processing by TasksController#add as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.9ms) + Rendered tasks/add.html.erb within layouts/application (4.1ms) +Completed 200 OK in 29ms (Views: 28.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 16:31:10 -0700 +Processing by TasksController#add as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.1ms) + Rendered tasks/add.html.erb within layouts/application (3.3ms) +Completed 200 OK in 19ms (Views: 18.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-25 16:31:11 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-25 16:31:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 116ms (Views: 115.0ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/application.self-3b6740d0bc0261e07b06aef0003084c473ea420094a2cd67b7ecc842e09b9785.css?body=1" for ::1 at 2016-04-25 16:32:00 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:32:00 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:32:00 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:32:00 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:32:00 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:32:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:32:00 -0700 + + +Started GET "/" for ::1 at 2016-04-25 16:32:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/application.self-3b6740d0bc0261e07b06aef0003084c473ea420094a2cd67b7ecc842e09b9785.css?body=1" for ::1 at 2016-04-25 16:32:01 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:32:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:32:01 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:32:01 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:32:01 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:32:01 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:32:01 -0700 + + +Started GET "/" for ::1 at 2016-04-25 16:32:49 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 24ms (Views: 22.8ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/application.self-1942488a59fa637f558c7e7eb5f95b74e08ffcaa8d236a66d3d8e8d3960bba77.css?body=1" for ::1 at 2016-04-25 16:32:49 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:32:49 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:32:49 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:32:49 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:32:49 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:32:49 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:32:49 -0700 + + +Started GET "/" for ::1 at 2016-04-25 16:33:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/application.self-1942488a59fa637f558c7e7eb5f95b74e08ffcaa8d236a66d3d8e8d3960bba77.css?body=1" for ::1 at 2016-04-25 16:33:30 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:33:30 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:33:30 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:33:30 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:33:30 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:33:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:33:30 -0700 + + +Started GET "/" for ::1 at 2016-04-25 16:33:43 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/application.self-1942488a59fa637f558c7e7eb5f95b74e08ffcaa8d236a66d3d8e8d3960bba77.css?body=1" for ::1 at 2016-04-25 16:33:43 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:33:43 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:33:43 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:33:43 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:33:43 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:33:43 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:33:43 -0700 + + +Started GET "/" for ::1 at 2016-04-25 16:33:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 21ms (Views: 20.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-1942488a59fa637f558c7e7eb5f95b74e08ffcaa8d236a66d3d8e8d3960bba77.css?body=1" for ::1 at 2016-04-25 16:33:58 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:33:58 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:33:58 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:33:58 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:33:58 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:33:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:33:58 -0700 + + +Started GET "/" for ::1 at 2016-04-25 16:34:02 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-25 16:34:02 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-25 16:34:02 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 16:34:04 -0700 +Processing by TasksController#add as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (3.6ms) + Rendered tasks/add.html.erb within layouts/application (6.2ms) +Completed 200 OK in 22ms (Views: 20.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 16:40:41 -0700 +Processing by TasksController#add as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.8ms) + Rendered tasks/add.html.erb within layouts/application (4.2ms) +Completed 200 OK in 25ms (Views: 24.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-be29431c4073c594f33916aec1543bcfff31a7f0e532e0ae22bccd1150c3d747.css?body=1" for ::1 at 2016-04-25 16:40:41 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:40:41 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:40:41 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:40:41 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:40:41 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:40:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:40:41 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-25 16:41:25 -0700 +Processing by TasksController#add as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.0ms) + Rendered tasks/add.html.erb within layouts/application (2.9ms) +Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-1942488a59fa637f558c7e7eb5f95b74e08ffcaa8d236a66d3d8e8d3960bba77.css?body=1" for ::1 at 2016-04-25 16:41:25 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:41:26 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:41:26 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:41:26 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:41:26 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:41:26 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:41:26 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-25 16:42:32 -0700 +Processing by TasksController#add as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.1ms) + Rendered tasks/add.html.erb within layouts/application (3.1ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-1942488a59fa637f558c7e7eb5f95b74e08ffcaa8d236a66d3d8e8d3960bba77.css?body=1" for ::1 at 2016-04-25 16:42:32 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:42:32 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:42:32 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:42:32 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:42:32 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:42:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:42:32 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-25 16:42:45 -0700 +Processing by TasksController#add as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.0ms) + Rendered tasks/add.html.erb within layouts/application (2.9ms) +Completed 200 OK in 27ms (Views: 26.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-e5d77df98862bea9521ce8e82a3c7071d79e2dbbb39067173adad608b43ddd6f.css?body=1" for ::1 at 2016-04-25 16:42:45 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:42:45 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:42:45 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:42:45 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:42:45 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:42:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:42:45 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-25 16:43:09 -0700 +Processing by TasksController#add as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.2ms) + Rendered tasks/add.html.erb within layouts/application (3.2ms) +Completed 200 OK in 28ms (Views: 27.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-36dae202366bdee47a27fd62ea423d2d0adc49bdfed570e21ba3590cfd5bb596.css?body=1" for ::1 at 2016-04-25 16:43:09 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:43:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:43:09 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:43:09 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:43:09 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:43:09 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:43:09 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-25 16:43:20 -0700 +Processing by TasksController#add as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (1.9ms) + Rendered tasks/add.html.erb within layouts/application (2.8ms) +Completed 200 OK in 42ms (Views: 41.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-2503e0fb095cea36f54d7031e33df132b530411482c0e271a9677a519fd59b67.css?body=1" for ::1 at 2016-04-25 16:43:20 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:43:20 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:43:20 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:43:20 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:43:20 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:43:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:43:20 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-25 16:43:24 -0700 +Processing by TasksController#add as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (3.0ms) + Rendered tasks/add.html.erb within layouts/application (4.1ms) +Completed 200 OK in 30ms (Views: 29.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-2dd52eadcdee80f97b4cb8b8189b4c8f11fe9cab55c3401502d5272a3621f457.css?body=1" for ::1 at 2016-04-25 16:43:24 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:43:24 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:43:24 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:43:24 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:43:24 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:43:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:43:24 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-25 16:43:30 -0700 +Processing by TasksController#add as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.0ms) + Rendered tasks/add.html.erb within layouts/application (3.1ms) +Completed 200 OK in 22ms (Views: 21.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-6bdc58b5a9af6610977581a5e94eafa9294346a3e2d09b01a01c2b11c0a6534a.css?body=1" for ::1 at 2016-04-25 16:43:30 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:43:30 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:43:30 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:43:30 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:43:30 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:43:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:43:30 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-25 16:43:40 -0700 +Processing by TasksController#add as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.9ms) + Rendered tasks/add.html.erb within layouts/application (3.8ms) +Completed 200 OK in 26ms (Views: 24.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-45963db76bc15b221d072aa6e1c681580c60ad2ba066876fccc417eeeae7df99.css?body=1" for ::1 at 2016-04-25 16:43:40 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:43:40 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:43:40 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:43:40 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:43:40 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:43:40 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:43:40 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-25 16:43:51 -0700 +Processing by TasksController#add as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (3.1ms) + Rendered tasks/add.html.erb within layouts/application (4.1ms) +Completed 200 OK in 32ms (Views: 31.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-d298d676c67f6fd570811076d87b2fa4fa64bcf234aa0864cdfb22e549ea022c.css?body=1" for ::1 at 2016-04-25 16:43:51 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:43:51 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:43:51 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:43:51 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:43:51 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:43:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:43:51 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-25 16:44:00 -0700 +Processing by TasksController#add as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (4.3ms) + Rendered tasks/add.html.erb within layouts/application (6.3ms) +Completed 200 OK in 50ms (Views: 49.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-4dc45395b3f6018fad40e00e8d280a4620d8bd07d16365609f8049ba291d252f.css?body=1" for ::1 at 2016-04-25 16:44:00 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:44:00 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:44:00 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:44:00 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:44:00 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:44:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:44:00 -0700 + + +Started GET "/tasks/add" for ::1 at 2016-04-25 16:44:27 -0700 +Processing by TasksController#add as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.1ms) + Rendered tasks/add.html.erb within layouts/application (3.1ms) +Completed 200 OK in 31ms (Views: 30.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-7d59877150c7b13b1fc7ae4939682a0038ee850b9600603b49adc45d712def6e.css?body=1" for ::1 at 2016-04-25 16:44:27 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:44:27 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:44:27 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:44:27 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:44:27 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:44:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:44:27 -0700 + + +Started GET "/" for ::1 at 2016-04-25 16:44:38 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 19ms (Views: 18.6ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-25 16:44:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-25 16:44:49 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 23ms (Views: 22.6ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-25 16:44:49 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 16:44:50 -0700 +Processing by TasksController#add as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (9.1ms) + Rendered tasks/add.html.erb within layouts/application (10.4ms) +Completed 200 OK in 27ms (Views: 26.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-25 16:44:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 28ms (Views: 26.3ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 16:44:54 -0700 +Processing by TasksController#add as HTML + Person Load (0.3ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (5.0ms) + Rendered tasks/add.html.erb within layouts/application (6.8ms) +Completed 200 OK in 28ms (Views: 26.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 16:44:56 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.9ms) +Completed 200 OK in 25ms (Views: 23.6ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/11" for ::1 at 2016-04-25 16:44:59 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"f9xrCN3CkrzFa0AcmbskRTywwfaZ30RO1LKNIHeYgxpRnsK37B+A8bNiCb8auOqHsvcPrUCigsIdupD/kaYfCQ==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 11]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 11]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/" for ::1 at 2016-04-25 16:44:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 22ms (Views: 20.8ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasks/45" for ::1 at 2016-04-25 16:45:03 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"jchZhO5DljRP+QrN6GfIQJbGNQC7G7pFri5aEPiKW6WjivA7356EeTnwQ25rZAaCGIH7W2JmfMlnJkfPHrTHtg==", "id"=>"45"} + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 45]] +  (0.2ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 45]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 9ms (ActiveRecord: 2.7ms) + + +Started GET "/" for ::1 at 2016-04-25 16:45:03 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 26ms (Views: 24.5ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/47" for ::1 at 2016-04-25 16:45:04 -0700 +Processing by TasksController#update_edit as HTML + Parameters: {"authenticity_token"=>"r0C0vJC9AOehILpr7TIQ1Foa/8J2iB7Ig1gAT14zhBGBAh0DoWASqtcp88huMd4W1F0xma/12ERKUB2QuA0YAg==", "id"=>"47"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 47]] +  (0.3ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-04-25 16:45:04 -0700"], ["updated_at", "2016-04-25 23:45:04.484575"], ["id", 47]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 8ms (ActiveRecord: 2.4ms) + + +Started GET "/" for ::1 at 2016-04-25 16:45:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 16:45:05 -0700 +Processing by TasksController#add as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (3.0ms) + Rendered tasks/add.html.erb within layouts/application (4.3ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started POST "/tasks" for ::1 at 2016-04-25 16:45:11 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"vFmbGrR/Yj7sAEYY13knYJWkpNfY+qbY1WoOCZfaoYOSGzKlhaJwc5oJD7tUeumiG+NqjAGHYFQcYhPWceQ9kA==", "task"=>{"title"=>"Test", "description"=>"Test if it works", "person_id"=>"2"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.6ms) INSERT INTO "tasks" ("title", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Test"], ["description", "Test if it works"], ["person_id", 2], ["created_at", "2016-04-25 23:45:11.416359"], ["updated_at", "2016-04-25 23:45:11.416359"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.2ms) + + +Started GET "/" for ::1 at 2016-04-25 16:45:11 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 18ms (Views: 17.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 16:45:13 -0700 +Processing by TasksController#completed as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.9ms) +Completed 200 OK in 24ms (Views: 23.6ms | ActiveRecord: 0.3ms) + + +Started GET "/people" for ::1 at 2016-04-25 16:45:15 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 16:45:16 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (4.2ms) +Completed 200 OK in 29ms (Views: 27.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6" for ::1 at 2016-04-25 16:45:17 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/people" for ::1 at 2016-04-25 16:45:18 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.3ms) + + +Started GET "/people/2" for ::1 at 2016-04-25 16:45:19 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered people/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/people" for ::1 at 2016-04-25 16:45:21 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.3ms) + + +Started GET "/people" for ::1 at 2016-04-25 16:45:45 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/application.self-7d59877150c7b13b1fc7ae4939682a0038ee850b9600603b49adc45d712def6e.css?body=1" for ::1 at 2016-04-25 16:45:45 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:45:45 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:45:45 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:45:45 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:45:45 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:45:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:45:45 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 16:45:52 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/application.self-7d59877150c7b13b1fc7ae4939682a0038ee850b9600603b49adc45d712def6e.css?body=1" for ::1 at 2016-04-25 16:45:52 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:45:52 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:45:52 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:45:52 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:45:52 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:45:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:45:52 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 16:45:58 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/application.self-7d59877150c7b13b1fc7ae4939682a0038ee850b9600603b49adc45d712def6e.css?body=1" for ::1 at 2016-04-25 16:45:58 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:45:58 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:45:58 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:45:58 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:45:58 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:45:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:45:58 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 16:46:08 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 21ms (Views: 20.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/application.self-7d59877150c7b13b1fc7ae4939682a0038ee850b9600603b49adc45d712def6e.css?body=1" for ::1 at 2016-04-25 16:46:08 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:46:08 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:46:08 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:46:08 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:46:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:46:08 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:46:08 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 16:46:18 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/application.self-7d59877150c7b13b1fc7ae4939682a0038ee850b9600603b49adc45d712def6e.css?body=1" for ::1 at 2016-04-25 16:46:18 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:46:18 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:46:18 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:46:18 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:46:18 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:46:18 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:46:18 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 16:46:26 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/application.self-7d59877150c7b13b1fc7ae4939682a0038ee850b9600603b49adc45d712def6e.css?body=1" for ::1 at 2016-04-25 16:46:26 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:46:26 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:46:26 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:46:26 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:46:26 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:46:26 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:46:26 -0700 + + +Started GET "/" for ::1 at 2016-04-25 16:46:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/48" for ::1 at 2016-04-25 16:46:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"48"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 48]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/48/edit" for ::1 at 2016-04-25 16:46:35 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"48"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 48]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.6ms) + Rendered tasks/edit.html.erb within layouts/application (4.3ms) +Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 16:46:37 -0700 +Processing by TasksController#completed as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.7ms) +Completed 200 OK in 23ms (Views: 22.4ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 16:46:38 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (4.6ms) +Completed 200 OK in 23ms (Views: 22.4ms | ActiveRecord: 0.2ms) + + +Started GET "/people" for ::1 at 2016-04-25 16:46:39 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.4ms) + + +Started GET "/people/2" for ::1 at 2016-04-25 16:46:41 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered people/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.1ms) + + +Started GET "/people" for ::1 at 2016-04-25 16:46:44 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.3ms) + + +Started GET "/people/1" for ::1 at 2016-04-25 16:46:46 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered people/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 16:47:01 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.8ms) +Completed 200 OK in 17ms (Views: 15.2ms | ActiveRecord: 0.2ms) + + +Started GET "/people" for ::1 at 2016-04-25 16:47:02 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 25ms (Views: 24.3ms | ActiveRecord: 0.6ms) + + +Started GET "/people/2" for ::1 at 2016-04-25 16:47:03 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered people/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.1ms) + + +Started GET "/people/2" for ::1 at 2016-04-25 16:48:09 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered people/show.html.erb within layouts/application (5.7ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `hi' for "Task":String: + app/views/people/show.html.erb:21:in `_app_views_people_show_html_erb___3373026180272725563_70262609128060' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c7bacfd6e8a335a3/variables" for ::1 at 2016-04-25 16:48:09 -0700 + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 2]] + + +Started POST "/__better_errors/c7bacfd6e8a335a3/eval" for ::1 at 2016-04-25 16:48:15 -0700 + + +Started POST "/__better_errors/c7bacfd6e8a335a3/eval" for ::1 at 2016-04-25 16:48:22 -0700 + + +Started POST "/__better_errors/c7bacfd6e8a335a3/eval" for ::1 at 2016-04-25 16:48:27 -0700 + + +Started POST "/__better_errors/c7bacfd6e8a335a3/eval" for ::1 at 2016-04-25 16:48:31 -0700 + + +Started POST "/__better_errors/c7bacfd6e8a335a3/eval" for ::1 at 2016-04-25 16:48:34 -0700 + + +Started GET "/people/2" for ::1 at 2016-04-25 16:48:47 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"2"} + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Rendered people/show.html.erb within layouts/application (7.8ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `title' for #: + activerecord (4.2.6) lib/active_record/relation/delegation.rb:136:in `method_missing' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:99:in `method_missing' + app/views/people/show.html.erb:18:in `_app_views_people_show_html_erb___3373026180272725563_70262645872940' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/9f064ae29f637746/variables" for ::1 at 2016-04-25 16:48:47 -0700 + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 2]] + + +Started GET "/people/2" for ::1 at 2016-04-25 16:48:58 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Rendered people/show.html.erb within layouts/application (5.6ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `title' for #: + activerecord (4.2.6) lib/active_record/relation/delegation.rb:136:in `method_missing' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:99:in `method_missing' + app/views/people/show.html.erb:18:in `_app_views_people_show_html_erb___3373026180272725563_70262609323520' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/cb96034981a091de/variables" for ::1 at 2016-04-25 16:48:58 -0700 + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 2]] + + +Started GET "/people/2" for ::1 at 2016-04-25 16:49:03 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered people/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-7d59877150c7b13b1fc7ae4939682a0038ee850b9600603b49adc45d712def6e.css?body=1" for ::1 at 2016-04-25 16:49:03 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:49:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:49:03 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:49:03 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:49:03 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:49:03 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:49:03 -0700 + + +Started GET "/people/2" for ::1 at 2016-04-25 16:49:13 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered people/show.html.erb within layouts/application (3.3ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `hi' for "Task":String: + app/views/people/show.html.erb:21:in `_app_views_people_show_html_erb___3373026180272725563_70262630715100' + actionview (4.2.6) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.6) lib/action_view/template.rb:143:in `render' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/annamason/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c64ceb27c59a9fe0/variables" for ::1 at 2016-04-25 16:49:13 -0700 + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 2]] + + +Started POST "/__better_errors/c64ceb27c59a9fe0/eval" for ::1 at 2016-04-25 16:49:17 -0700 + + +Started POST "/__better_errors/c64ceb27c59a9fe0/eval" for ::1 at 2016-04-25 16:49:21 -0700 + + +Started POST "/__better_errors/c64ceb27c59a9fe0/eval" for ::1 at 2016-04-25 16:49:26 -0700 + + +Started POST "/__better_errors/c64ceb27c59a9fe0/eval" for ::1 at 2016-04-25 16:49:32 -0700 + + +Started GET "/people/2" for ::1 at 2016-04-25 16:49:44 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered people/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 24ms (Views: 23.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-7d59877150c7b13b1fc7ae4939682a0038ee850b9600603b49adc45d712def6e.css?body=1" for ::1 at 2016-04-25 16:49:44 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:49:44 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:49:44 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:49:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:49:44 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:49:44 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:49:44 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 16:49:47 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.5ms) + + +Started GET "/people/1" for ::1 at 2016-04-25 16:49:49 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered people/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/people/1" for ::1 at 2016-04-25 16:50:15 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 1]] + Rendered people/show.html.erb within layouts/application (4.2ms) +Completed 200 OK in 22ms (Views: 20.2ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/application.self-7d59877150c7b13b1fc7ae4939682a0038ee850b9600603b49adc45d712def6e.css?body=1" for ::1 at 2016-04-25 16:50:15 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:50:15 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:50:15 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:50:15 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:50:15 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:50:15 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:50:15 -0700 + + +Started GET "/people/1/tasks" for ::1 at 2016-04-25 16:50:17 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 1]] + Rendered people/tasks.html.erb within layouts/application (2.5ms) +Completed 200 OK in 19ms (Views: 17.7ms | ActiveRecord: 0.3ms) + + +Started GET "/people/1/tasks" for ::1 at 2016-04-25 16:52:08 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 1]] + Rendered people/tasks.html.erb within layouts/application (2.2ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-7d59877150c7b13b1fc7ae4939682a0038ee850b9600603b49adc45d712def6e.css?body=1" for ::1 at 2016-04-25 16:52:08 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:52:08 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:52:08 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:52:08 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:52:08 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:52:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:52:08 -0700 + + +Started GET "/people/1/tasks" for ::1 at 2016-04-25 16:52:09 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 1]] + Rendered people/tasks.html.erb within layouts/application (2.1ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/application.self-7d59877150c7b13b1fc7ae4939682a0038ee850b9600603b49adc45d712def6e.css?body=1" for ::1 at 2016-04-25 16:52:09 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:52:09 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:52:09 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:52:09 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:52:09 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:52:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:52:09 -0700 + + +Started GET "/people/1/tasks" for ::1 at 2016-04-25 16:52:42 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 1]] + Rendered people/tasks.html.erb within layouts/application (1.8ms) +Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-7d59877150c7b13b1fc7ae4939682a0038ee850b9600603b49adc45d712def6e.css?body=1" for ::1 at 2016-04-25 16:52:42 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:52:42 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:52:42 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:52:42 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:52:42 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:52:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:52:42 -0700 + + +Started GET "/people/1/tasks" for ::1 at 2016-04-25 16:52:43 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 1]] + Rendered people/tasks.html.erb within layouts/application (1.3ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-7d59877150c7b13b1fc7ae4939682a0038ee850b9600603b49adc45d712def6e.css?body=1" for ::1 at 2016-04-25 16:52:43 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:52:43 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:52:43 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:52:43 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:52:43 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:52:43 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:52:43 -0700 diff --git a/task-list/public/404.html b/public/404.html similarity index 100% rename from task-list/public/404.html rename to public/404.html diff --git a/task-list/public/422.html b/public/422.html similarity index 100% rename from task-list/public/422.html rename to public/422.html diff --git a/task-list/public/500.html b/public/500.html similarity index 100% rename from task-list/public/500.html rename to public/500.html diff --git a/task-list/public/favicon.ico b/public/favicon.ico similarity index 100% rename from task-list/public/favicon.ico rename to public/favicon.ico diff --git a/task-list/public/robots.txt b/public/robots.txt similarity index 100% rename from task-list/public/robots.txt rename to public/robots.txt diff --git a/seeds.rb b/seeds.rb deleted file mode 100644 index de6ef27a7..000000000 --- a/seeds.rb +++ /dev/null @@ -1,20 +0,0 @@ -def random_time - Time.at(rand * Time.now.to_i) -end - -tasks = [ - { name: "The First Task", description: "", completed_at: random_time }, - { name: "Go to Brunch", description: "" }, - { name: "Go to Lunch", description: "", completed_at: random_time }, - { name: "Go to Second Lunch", description: "" }, - { name: "Play Video Games", description: "", completed_at: random_time }, - { name: "High Five Somebody You Don't Know", description: "", completed_at: random_time }, - { name: "Plant Flowers", description: "", completed_at: random_time }, - { name: "Call Mom", description: "" }, - { name: "She worries, you know.", description: "" }, - { name: "Nap.", description: "", completed_at: random_time } -] - -tasks.each do |task| - Task.create task -end diff --git a/task-list/.gitignore b/task-list/.gitignore deleted file mode 100644 index 050c9d95c..000000000 --- a/task-list/.gitignore +++ /dev/null @@ -1,17 +0,0 @@ -# See https://help.github.com/articles/ignoring-files for more about ignoring files. -# -# If you find yourself ignoring temporary files generated by your text editor -# or operating system, you probably want to add a global ignore instead: -# git config --global core.excludesfile '~/.gitignore_global' - -# Ignore bundler config. -/.bundle - -# Ignore the default SQLite database. -/db/*.sqlite3 -/db/*.sqlite3-journal - -# Ignore all logfiles and tempfiles. -/log/* -!/log/.keep -/tmp diff --git a/task-list/README.rdoc b/task-list/README.rdoc deleted file mode 100644 index dd4e97e22..000000000 --- a/task-list/README.rdoc +++ /dev/null @@ -1,28 +0,0 @@ -== README - -This README would normally document whatever steps are necessary to get the -application up and running. - -Things you may want to cover: - -* Ruby version - -* System dependencies - -* Configuration - -* Database creation - -* Database initialization - -* How to run the test suite - -* Services (job queues, cache servers, search engines, etc.) - -* Deployment instructions - -* ... - - -Please feel free to use a different markup language if you do not plan to run -rake doc:app. diff --git a/task-list/app/assets/stylesheets/application.css b/task-list/app/assets/stylesheets/application.css deleted file mode 100644 index f9cd5b348..000000000 --- a/task-list/app/assets/stylesheets/application.css +++ /dev/null @@ -1,15 +0,0 @@ -/* - * This is a manifest file that'll be compiled into application.css, which will include all the files - * listed below. - * - * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, - * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path. - * - * You're free to add application-wide styles to this file and they'll appear at the bottom of the - * compiled file so the styles you add here take precedence over styles defined in any styles - * defined in the other CSS/SCSS files in this directory. It is generally better to create a new - * file per style scope. - * - *= require_tree . - *= require_self - */ diff --git a/task-list/test/controllers/.keep b/test/controllers/.keep similarity index 100% rename from task-list/test/controllers/.keep rename to test/controllers/.keep diff --git a/task-list/test/controllers/home_controller_test.rb b/test/controllers/home_controller_test.rb similarity index 100% rename from task-list/test/controllers/home_controller_test.rb rename to test/controllers/home_controller_test.rb diff --git a/task-list/test/controllers/tasks_controller_test.rb b/test/controllers/tasks_controller_test.rb similarity index 100% rename from task-list/test/controllers/tasks_controller_test.rb rename to test/controllers/tasks_controller_test.rb diff --git a/task-list/test/fixtures/.keep b/test/fixtures/.keep similarity index 100% rename from task-list/test/fixtures/.keep rename to test/fixtures/.keep diff --git a/task-list/test/fixtures/people.yml b/test/fixtures/people.yml similarity index 100% rename from task-list/test/fixtures/people.yml rename to test/fixtures/people.yml diff --git a/task-list/test/fixtures/tasks.yml b/test/fixtures/tasks.yml similarity index 100% rename from task-list/test/fixtures/tasks.yml rename to test/fixtures/tasks.yml diff --git a/task-list/test/helpers/.keep b/test/helpers/.keep similarity index 100% rename from task-list/test/helpers/.keep rename to test/helpers/.keep diff --git a/task-list/test/integration/.keep b/test/integration/.keep similarity index 100% rename from task-list/test/integration/.keep rename to test/integration/.keep diff --git a/task-list/test/mailers/.keep b/test/mailers/.keep similarity index 100% rename from task-list/test/mailers/.keep rename to test/mailers/.keep diff --git a/task-list/test/models/.keep b/test/models/.keep similarity index 100% rename from task-list/test/models/.keep rename to test/models/.keep diff --git a/task-list/test/models/person_test.rb b/test/models/person_test.rb similarity index 100% rename from task-list/test/models/person_test.rb rename to test/models/person_test.rb diff --git a/task-list/test/models/task_test.rb b/test/models/task_test.rb similarity index 100% rename from task-list/test/models/task_test.rb rename to test/models/task_test.rb diff --git a/task-list/test/test_helper.rb b/test/test_helper.rb similarity index 100% rename from task-list/test/test_helper.rb rename to test/test_helper.rb diff --git a/task-list/vendor/assets/javascripts/.keep b/vendor/assets/javascripts/.keep similarity index 100% rename from task-list/vendor/assets/javascripts/.keep rename to vendor/assets/javascripts/.keep diff --git a/task-list/vendor/assets/stylesheets/.keep b/vendor/assets/stylesheets/.keep similarity index 100% rename from task-list/vendor/assets/stylesheets/.keep rename to vendor/assets/stylesheets/.keep From f232bc0e67f4ff3b26e42cbf6313b7fcf8e404a8 Mon Sep 17 00:00:00 2001 From: Anna Wilson Date: Mon, 25 Apr 2016 18:27:29 -0700 Subject: [PATCH 16/18] Changed gemfile --- Gemfile | 7 +- db/development.sqlite3 | Bin 24576 -> 24576 bytes log/development.log | 277 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 283 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 90caf7e90..7d3217513 100644 --- a/Gemfile +++ b/Gemfile @@ -4,7 +4,6 @@ source 'https://rubygems.org' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' gem 'rails', '4.2.6' # Use sqlite3 as the database for Active Record -gem 'sqlite3' # Use SCSS for stylesheets gem 'sass-rails', '~> 5.0' # Use Uglifier as compressor for JavaScript assets @@ -45,4 +44,10 @@ group :development do # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring gem 'spring' + gem 'sqlite3' +end + +group :production do + gem 'pg' + gem 'rails_12factor' end diff --git a/db/development.sqlite3 b/db/development.sqlite3 index beac36cc7f38729799086d518abd76528b287c42..10eb36d6570569ae1f6583ef65232bc5fc3b443d 100644 GIT binary patch delta 65 zcmV-H0KWf#zyW~30gxL3gOMCV0fVt%q%RZ)3RDOU(+yk<`3h7Fhz@oO)(h6N7%-*^ X1Pmzw7_-7UX8{BbIRIa?Ej-gBtZWnE delta 65 zcmV-H0KWf#zyW~30gxL3fsq_T0fDh#q%RZ+3RDOU(+yk<`3h7Fhz@oN-wY|U7%-*^ X1Pem|A+y3dX8{CVF9-m$Ej-gBo(&U9 diff --git a/log/development.log b/log/development.log index be1043ce5..79a41d1f0 100644 --- a/log/development.log +++ b/log/development.log @@ -54797,3 +54797,280 @@ Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450 Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:52:43 -0700 + + +Started GET "/" for ::1 at 2016-04-25 18:16:59 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (25.1ms) +Completed 200 OK in 327ms (Views: 313.4ms | ActiveRecord: 1.1ms) + + +Started GET "/" for ::1 at 2016-04-25 18:17:21 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/48" for ::1 at 2016-04-25 18:17:23 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"48"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 48]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 29ms (Views: 27.4ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 18:17:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/48" for ::1 at 2016-04-25 18:17:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"48"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 48]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 18:17:28 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 18:17:41 -0700 +Processing by TasksController#add as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (17.7ms) + Rendered tasks/add.html.erb within layouts/application (23.2ms) +Completed 200 OK in 45ms (Views: 44.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 18:17:43 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/48/edit" for ::1 at 2016-04-25 18:17:46 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"48"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 48]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (3.6ms) + Rendered tasks/edit.html.erb within layouts/application (5.1ms) +Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-25 18:17:54 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.4ms) + + +Started GET "/people" for ::1 at 2016-04-25 18:18:05 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (19.3ms) +Completed 200 OK in 34ms (Views: 33.2ms | ActiveRecord: 0.5ms) + + +Started GET "/people/1" for ::1 at 2016-04-25 18:18:59 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 1]] + Rendered people/show.html.erb within layouts/application (2.3ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.3ms) + + +Started GET "/people" for ::1 at 2016-04-25 18:19:04 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.4ms) + + +Started GET "/people/2" for ::1 at 2016-04-25 18:19:06 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 2]] + Rendered people/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.3ms) + + +Started GET "/people" for ::1 at 2016-04-25 18:19:07 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 21ms (Views: 20.1ms | ActiveRecord: 0.3ms) + + +Started GET "/people/2" for ::1 at 2016-04-25 18:19:52 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"2"} + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 2]] + Rendered people/show.html.erb within layouts/application (2.0ms) +Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.4ms) + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:19:54 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 2]] + Rendered people/tasks.html.erb within layouts/application (2.3ms) +Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-25 18:20:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.2ms) + + +Started GET "/people" for ::1 at 2016-04-25 18:20:02 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.4ms) + + +Started GET "/people/3" for ::1 at 2016-04-25 18:20:03 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"3"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 3]] + Rendered people/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.2ms) + + +Started GET "/people/3/tasks" for ::1 at 2016-04-25 18:20:05 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"3"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 3]] + Rendered people/tasks.html.erb within layouts/application (1.6ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 18:20:08 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (3.4ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/46" for ::1 at 2016-04-25 18:20:15 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"S7B34mlrcSutnSdvI/Oyr/5e8rFHE31Iz3KUhwNsRlHmXy8Efv7qLNqYiRS2j3aaIgjHODyEFiea7CuHJdlA0A==", "id"=>"46"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 46]] +  (0.1ms) begin transaction + SQL (1.1ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 46]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.9ms) + + +Started GET "/" for ::1 at 2016-04-25 18:20:15 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 18:20:17 -0700 +Processing by TasksController#add as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.6ms) + Rendered tasks/add.html.erb within layouts/application (3.9ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 18:20:18 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.2ms) +Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/47" for ::1 at 2016-04-25 18:20:20 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"PK/e+MPwFYbmTcdZu3VPyIQG5kpXwlD8YfTm3w76W7aRQIYe1GWOgZFIaSIuCYv9WFDTwyxVO5M0alnfKE9dNw==", "id"=>"47"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 47]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 47]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/" for ::1 at 2016-04-25 18:20:20 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 18:20:21 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-25 18:23:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 18:23:14 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.2ms) From fb0cf52ff067c284d69f149b42e18945222eae6b Mon Sep 17 00:00:00 2001 From: Anna Wilson Date: Mon, 25 Apr 2016 18:31:17 -0700 Subject: [PATCH 17/18] Installed pg --- Gemfile.lock | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Gemfile.lock b/Gemfile.lock index abfecdc5c..8c1f700d1 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -80,6 +80,7 @@ GEM multi_json (1.11.2) nokogiri (1.6.7.2) mini_portile2 (~> 2.0.0.rc2) + pg (0.18.4) rack (1.6.4) rack-test (0.6.3) rack (>= 1.0) @@ -102,6 +103,11 @@ GEM rails-deprecated_sanitizer (>= 1.0.1) rails-html-sanitizer (1.0.3) loofah (~> 2.0) + rails_12factor (0.0.3) + rails_serve_static_assets + rails_stdout_logging + rails_serve_static_assets (0.0.5) + rails_stdout_logging (0.0.5) railties (4.2.6) actionpack (= 4.2.6) activesupport (= 4.2.6) @@ -154,7 +160,9 @@ DEPENDENCIES coffee-rails (~> 4.1.0) jbuilder (~> 2.0) jquery-rails + pg rails (= 4.2.6) + rails_12factor sass-rails (~> 5.0) sdoc (~> 0.4.0) spring From 268023f8645aa394ec95ead2ae49cfd2c127d6e8 Mon Sep 17 00:00:00 2001 From: Anna Wilson Date: Mon, 25 Apr 2016 18:56:54 -0700 Subject: [PATCH 18/18] proofreading --- app/assets/stylesheets/application.css | 17 +- app/views/layouts/application.html.erb | 1 - app/views/people/index.html.erb | 2 +- app/views/people/show.html.erb | 2 +- app/views/people/tasks.html.erb | 2 +- app/views/tasks/completed.html.erb | 13 +- db/development.sqlite3 | Bin 24576 -> 24576 bytes log/development.log | 709 +++++++++++++++++++++++++ 8 files changed, 732 insertions(+), 14 deletions(-) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index 8538dc5b3..4f3cac46e 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -6,7 +6,6 @@ html { body { margin-top: 0rem; text-align: center; - // background: url(cloudsart.jpg) center repeat; background-color: lightblue; } @@ -36,15 +35,10 @@ a:hover { text-decoration: underline; } -// table, th, td { -// border: .15rem solid black; -// } - table.all-tasks { text-align: left; background-color: rgba(255, 255, 255, 0.35); border: .2rem solid #03577B; - // border-radius: 5rem; width:50%; margin-left:25%; margin-right:25%; @@ -58,13 +52,22 @@ table.all-tasks { table.single-task { background-color: rgba(255, 255, 255, 0.35); border: .2rem solid #03577B; - // border-radius: 2.5rem; width:60%; margin-left:20%; margin-right:20%; border-spacing: 0rem; } +table.all-names{ + text-align: left; + background-color: rgba(255, 255, 255, 0.35); + border: .2rem solid #03577B; + width:40%; + margin-left:30%; + margin-right:30%; + border-spacing: 0rem; +} + th, td { padding: .75rem; } diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index cb8cdc6c7..b30591a50 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -15,7 +15,6 @@ <%= link_to "New Task", tasks_add_path %> <%= link_to "Completed Tasks", tasks_completed_path %> <%= link_to "People", people_path %> - diff --git a/app/views/people/index.html.erb b/app/views/people/index.html.erb index 113470c3d..fbbd81642 100644 --- a/app/views/people/index.html.erb +++ b/app/views/people/index.html.erb @@ -1,6 +1,6 @@

All People

- +
diff --git a/app/views/people/show.html.erb b/app/views/people/show.html.erb index 46d1442d9..1a6495863 100644 --- a/app/views/people/show.html.erb +++ b/app/views/people/show.html.erb @@ -1,4 +1,4 @@ -

Person Details

+

Personal Details

Name
diff --git a/app/views/people/tasks.html.erb b/app/views/people/tasks.html.erb index 84137beb9..6ca6f1101 100644 --- a/app/views/people/tasks.html.erb +++ b/app/views/people/tasks.html.erb @@ -1,4 +1,4 @@ -

Person Details

+

Personal Tasks

diff --git a/app/views/tasks/completed.html.erb b/app/views/tasks/completed.html.erb index f7481b6e9..5cb72a57e 100644 --- a/app/views/tasks/completed.html.erb +++ b/app/views/tasks/completed.html.erb @@ -3,15 +3,22 @@
- - + + + <% @all_tasks.each do |task| %> - + +
Completed TaskDateTaskPersonDate Completed Delete
<%= link_to task.title, task_path(task.id) %><%= task.completed_at %> + <% if task.person_id != nil %> + <% num = task.person_id %> + <%= Person.find(num).name %> + <% end %> + <%= task.completed_at %> <%= button_to "Delete", task_path(task.id), method: :delete, diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 10eb36d6570569ae1f6583ef65232bc5fc3b443d..f592bb92de5dfb30c6e21f3210d01e85a7543aba 100644 GIT binary patch delta 59 zcmZoTz}Rqrae_2s%S0Jx#+HoEJ8dEMg$a!^CH~S=+{t Pk)@QKondo=?E)nL9zzh3 diff --git a/log/development.log b/log/development.log index 79a41d1f0..9f7dbb8f3 100644 --- a/log/development.log +++ b/log/development.log @@ -55074,3 +55074,712 @@ Processing by TasksController#index as HTML Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] Rendered tasks/index.html.erb within layouts/application (1.8ms) Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 18:42:02 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 18:42:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 18:42:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-7d59877150c7b13b1fc7ae4939682a0038ee850b9600603b49adc45d712def6e.css?body=1" for ::1 at 2016-04-25 18:42:05 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 18:42:05 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 18:42:05 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 18:42:05 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 18:42:05 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 18:42:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 18:42:05 -0700 + + +Started GET "/" for ::1 at 2016-04-25 18:47:35 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-7d59877150c7b13b1fc7ae4939682a0038ee850b9600603b49adc45d712def6e.css?body=1" for ::1 at 2016-04-25 18:47:35 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 18:47:35 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 18:47:35 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 18:47:35 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 18:47:35 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 18:47:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 18:47:35 -0700 + + +Started GET "/" for ::1 at 2016-04-25 18:47:37 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 18:47:37 -0700 +Processing by TasksController#add as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (1.9ms) + Rendered tasks/add.html.erb within layouts/application (3.1ms) +Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-25 18:47:38 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 18:47:38 -0700 +Processing by TasksController#index as HTML + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.7ms) + + +Started GET "/" for ::1 at 2016-04-25 18:48:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-25 18:48:02 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 18:48:02 -0700 +Processing by TasksController#add as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (3.2ms) + Rendered tasks/add.html.erb within layouts/application (5.1ms) +Completed 200 OK in 19ms (Views: 18.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 18:48:06 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.6ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 18:48:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.2ms) + + +Started GET "/people" for ::1 at 2016-04-25 18:48:15 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 18:48:16 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Rendered tasks/completed.html.erb within layouts/application (2.1ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 18:49:56 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/completed.html.erb within layouts/application (4.6ms) +Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasks/7" for ::1 at 2016-04-25 18:50:05 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"5HKAZT/DdDuz8ibKHfBL1pM/exFY+2ejr0s3eeVxNRBJndiDKFbvPMT3iLGIjI/jT2lOmCNsDMz61Yh5w8QzkQ==", "id"=>"7"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 7]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 7]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.9ms) + + +Started GET "/" for ::1 at 2016-04-25 18:50:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 18:50:06 -0700 +Processing by TasksController#add as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.2ms) + Rendered tasks/add.html.erb within layouts/application (3.6ms) +Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-25 18:50:07 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 18:50:07 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/completed.html.erb within layouts/application (2.4ms) +Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 18:50:19 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/completed.html.erb within layouts/application (2.6ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-7d59877150c7b13b1fc7ae4939682a0038ee850b9600603b49adc45d712def6e.css?body=1" for ::1 at 2016-04-25 18:50:19 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 18:50:19 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 18:50:19 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 18:50:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 18:50:19 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 18:50:19 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 18:50:19 -0700 + + +Started GET "/" for ::1 at 2016-04-25 18:50:23 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 18:50:32 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/completed.html.erb within layouts/application (3.3ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-25 18:50:33 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 18:50:43 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 18:50:44 -0700 +Processing by TasksController#add as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.7ms) + Rendered tasks/add.html.erb within layouts/application (4.0ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 18:50:44 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/completed.html.erb within layouts/application (2.1ms) +Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.2ms) + + +Started GET "/people" for ::1 at 2016-04-25 18:50:50 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 22ms (Views: 21.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 18:50:54 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/completed.html.erb within layouts/application (3.0ms) +Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 18:50:55 -0700 +Processing by TasksController#add as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.7ms) + Rendered tasks/add.html.erb within layouts/application (4.2ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-25 18:50:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.2ms) + + +Started GET "/people" for ::1 at 2016-04-25 18:50:56 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.5ms) + + +Started GET "/people" for ::1 at 2016-04-25 18:51:25 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/application.self-7d59877150c7b13b1fc7ae4939682a0038ee850b9600603b49adc45d712def6e.css?body=1" for ::1 at 2016-04-25 18:51:25 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 18:51:25 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 18:51:25 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 18:51:25 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 18:51:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 18:51:25 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 18:51:25 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 18:51:32 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/application.self-7d59877150c7b13b1fc7ae4939682a0038ee850b9600603b49adc45d712def6e.css?body=1" for ::1 at 2016-04-25 18:51:32 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 18:51:32 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 18:51:32 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 18:51:32 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 18:51:32 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 18:51:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 18:51:32 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 18:52:23 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 29ms (Views: 27.8ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/application.self-100a35bc1a1a19372738246f0b35624a95b2c550ca2f5cbe9d2ce29852cd470a.css?body=1" for ::1 at 2016-04-25 18:52:23 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 18:52:23 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 18:52:23 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 18:52:23 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 18:52:23 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 18:52:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 18:52:24 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 18:52:57 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 28ms (Views: 26.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/application.self-d2d3fc48401307b4134548490cc6b1f88ae9db322701323a39ff67ade53f999d.css?body=1" for ::1 at 2016-04-25 18:52:57 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 18:52:57 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 18:52:57 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 18:52:57 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 18:52:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 18:52:57 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 18:52:57 -0700 + + +Started GET "/" for ::1 at 2016-04-25 18:53:22 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 18:53:22 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-3b87546bda7e88d5340f6ccbf8fa77aa5b489a50053ed3ab508b0cbb54012dd1.css?body=1" for ::1 at 2016-04-25 18:53:22 -0700 + + +Started GET "/tasks/48" for ::1 at 2016-04-25 18:53:23 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"48"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 48]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/48/edit" for ::1 at 2016-04-25 18:53:27 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"48"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 48]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.7ms) + Rendered tasks/edit.html.erb within layouts/application (4.2ms) +Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 18:53:31 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 18:53:32 -0700 +Processing by TasksController#add as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.4ms) + Rendered tasks/add.html.erb within layouts/application (3.6ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 18:53:33 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/completed.html.erb within layouts/application (2.4ms) +Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.2ms) + + +Started GET "/people" for ::1 at 2016-04-25 18:53:43 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.4ms) + + +Started GET "/people/1" for ::1 at 2016-04-25 18:53:49 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 1]] + Rendered people/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.2ms) + + +Started GET "/people/1/tasks" for ::1 at 2016-04-25 18:53:51 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 1]] + Rendered people/tasks.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.2ms) + + +Started GET "/people/1/tasks" for ::1 at 2016-04-25 18:53:58 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 1]] + Rendered people/tasks.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started GET "/people" for ::1 at 2016-04-25 18:54:00 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.4ms) + + +Started GET "/people/2" for ::1 at 2016-04-25 18:54:02 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 2]] + Rendered people/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.2ms) + + +Started GET "/people/2/tasks" for ::1 at 2016-04-25 18:54:03 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"2"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 2]] + Rendered people/tasks.html.erb within layouts/application (1.3ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 18:54:08 -0700 +Processing by TasksController#completed as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/completed.html.erb within layouts/application (2.8ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-25 18:54:10 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 18:56:12 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-3b87546bda7e88d5340f6ccbf8fa77aa5b489a50053ed3ab508b0cbb54012dd1.css?body=1" for ::1 at 2016-04-25 18:56:12 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 18:56:12 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 18:56:12 -0700 + + +Started GET "/assets/home.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 18:56:12 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 18:56:12 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 18:56:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 18:56:12 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 18:56:13 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.4ms) + + +Started GET "/people/1" for ::1 at 2016-04-25 18:56:15 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 1]] + Rendered people/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.2ms) + + +Started GET "/people/1/tasks" for ::1 at 2016-04-25 18:56:16 -0700 +Processing by PeopleController#tasks as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NOT NULL) [["person_id", 1]] + Rendered people/tasks.html.erb within layouts/application (1.6ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.2ms) + + +Started GET "/people" for ::1 at 2016-04-25 18:56:24 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 18:56:25 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/completed.html.erb within layouts/application (2.3ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/add" for ::1 at 2016-04-25 18:56:25 -0700 +Processing by TasksController#add as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasks/_input.html.erb (2.2ms) + Rendered tasks/add.html.erb within layouts/application (3.6ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/completed" for ::1 at 2016-04-25 18:56:26 -0700 +Processing by TasksController#completed as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (completed_at IS NOT NULL) + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/completed.html.erb within layouts/application (2.0ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.2ms) + + +Started GET "/people" for ::1 at 2016-04-25 18:56:26 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 1]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 2]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."person_id" = ? AND (tasks.completed_at IS NULL) [["person_id", 3]] + Rendered people/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.3ms)